summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2022-10-30 09:48:51 +0200
committerGitHub <noreply@github.com>2022-10-30 09:48:51 +0200
commitbbc91af86cb26a25a025db0b3d63a4633798683c (patch)
tree89fd25d7911dfbd5a16a886867f7917a54758de2
parent9f3791fa781f979664edc0869eb2c02562abc4bb (diff)
downloadredis-py-bbc91af86cb26a25a025db0b3d63a4633798683c.tar.gz
Remove default None value from LMPOP (#2438)
-rw-r--r--redis/commands/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands/core.py b/redis/commands/core.py
index 51f30d2..c245a7a 100644
--- a/redis/commands/core.py
+++ b/redis/commands/core.py
@@ -2553,7 +2553,7 @@ class ListCommands(CommandsProtocol):
self,
num_keys: int,
*args: List[str],
- direction: str = None,
+ direction: str,
count: Optional[int] = 1,
) -> Union[Awaitable[list], list]:
"""