Skip to content

Commit 2d23865

Browse files
committed
Applying review comments
1 parent 4050c91 commit 2d23865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/_parsers/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def parse_stream_list(response, **options):
275275
for r in response:
276276
if r is not None:
277277
if "claim_min_idle_time" in options:
278-
data.append((r[0], pairs_to_dict(r[1]), r[2], r[3]))
278+
data.append((r[0], pairs_to_dict(r[1]), *r[2:]))
279279
else:
280280
data.append((r[0], pairs_to_dict(r[1])))
281281
else:

0 commit comments

Comments
 (0)