summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--redis/commands/core.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/redis/commands/core.py b/redis/commands/core.py
index b07f12d..28dab81 100644
--- a/redis/commands/core.py
+++ b/redis/commands/core.py
@@ -2667,7 +2667,11 @@ class ListCommands(CommandsProtocol):
"""
return self.execute_command("LLEN", name)
- def lpop(self, name: str, count: Optional[int] = None) -> Union[str, List, None]:
+ def lpop(
+ self,
+ name: str,
+ count: Optional[int] = None,
+ ) -> Union[Awaitable[Union[str, List, None]], Union[str, List, None]]:
"""
Removes and returns the first elements of the list ``name``.
@@ -2744,7 +2748,11 @@ class ListCommands(CommandsProtocol):
"""
return self.execute_command("LTRIM", name, start, end)
- def rpop(self, name: str, count: Optional[int] = None) -> Union[str, List, None]:
+ def rpop(
+ self,
+ name: str,
+ count: Optional[int] = None,
+ ) -> Union[Awaitable[Union[str, List, None]], Union[str, List, None]]:
"""
Removes and returns the last elements of the list ``name``.