Skip to content

Commit 156723c

Browse files
committed
Remove redundant parentheses
1 parent d2b2b9c commit 156723c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quixstreams/state/rocksdb/partition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def iter_items(
184184
# filter it here.
185185
for key, value in items:
186186
if lower_bound <= key:
187-
yield (key, value)
187+
yield key, value
188188

189189
def exists(self, key: bytes, cf_name: str = "default") -> bool:
190190
"""

0 commit comments

Comments
 (0)