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 committed Jan 9, 2024
1 parent fabc23e commit 4a66c1e
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 @@ -5260,12 +5260,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 @@ -5280,7 +5280,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 @@ -5299,7 +5299,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 @@ -5315,7 +5315,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 4a66c1e

Please sign in to comment.