Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions redis/commands/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2904,7 +2904,7 @@ def blpop(
) -> Union[Awaitable[list], list]:
"""
LPOP a value off of the first non-empty list
named in the ``keys`` list.
named in ``keys``.

If none of the lists in ``keys`` has a value to LPOP, then block
for ``timeout`` seconds, or until a value gets pushed on to one
Expand All @@ -2925,7 +2925,7 @@ def brpop(
) -> Union[Awaitable[list], list]:
"""
RPOP a value off of the first non-empty list
named in the ``keys`` list.
named in ``keys``.

If none of the lists in ``keys`` has a value to RPOP, then block
for ``timeout`` seconds, or until a value gets pushed on to one
Expand Down