Skip to content

Commit

Permalink
Fix type hint of arbitrary argument lists (#2908)
Browse files Browse the repository at this point in the history
  • Loading branch information
zxjlm authored and dvora-h committed Feb 25, 2024
1 parent a32b513 commit a0b820d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions redis/commands/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5253,12 +5253,12 @@ class ScriptCommands(CommandsProtocol):
"""

def _eval(
self, command: str, script: str, numkeys: int, *keys_and_args: list
self, command: str, script: str, numkeys: int, *keys_and_args: str
) -> Union[Awaitable[str], str]:
return self.execute_command(command, script, numkeys, *keys_and_args)

def eval(
self, script: str, numkeys: int, *keys_and_args: list
self, script: str, numkeys: int, *keys_and_args: str
) -> Union[Awaitable[str], str]:
"""
Execute the Lua ``script``, specifying the ``numkeys`` the script
Expand All @@ -5273,7 +5273,7 @@ def eval(
return self._eval("EVAL", script, numkeys, *keys_and_args)

def eval_ro(
self, script: str, numkeys: int, *keys_and_args: list
self, script: str, numkeys: int, *keys_and_args: str
) -> Union[Awaitable[str], str]:
"""
The read-only variant of the EVAL command
Expand All @@ -5292,7 +5292,7 @@ def _evalsha(
return self.execute_command(command, sha, numkeys, *keys_and_args)

def evalsha(
self, sha: str, numkeys: int, *keys_and_args: list
self, sha: str, numkeys: int, *keys_and_args: str
) -> Union[Awaitable[str], str]:
"""
Use the ``sha`` to execute a Lua script already registered via EVAL
Expand All @@ -5308,7 +5308,7 @@ def evalsha(
return self._evalsha("EVALSHA", sha, numkeys, *keys_and_args)

def evalsha_ro(
self, sha: str, numkeys: int, *keys_and_args: list
self, sha: str, numkeys: int, *keys_and_args: str
) -> Union[Awaitable[str], str]:
"""
The read-only variant of the EVALSHA command
Expand Down

0 comments on commit a0b820d

Please sign in to comment.