Skip to content

Commit 5c9e6bc

Browse files
committed
fix pr comment
1 parent 9661260 commit 5c9e6bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/commands/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3173,7 +3173,7 @@ def zintercard(self, numkeys: int, keys: List[str], limit: int = 0) -> int:
31733173
31743174
For more information check https://redis.io/commands/zintercard
31753175
"""
3176-
args = [numkeys] + keys + ["LIMIT", limit]
3176+
args = [numkeys, *keys, "LIMIT", limit]
31773177
return self.execute_command("ZINTERCARD", *args)
31783178

31793179
def zlexcount(self, name, min, max):

0 commit comments

Comments
 (0)