(
self: SyncClientProtocol,
name: KeyT,
count: int | None = None,
)
| 4918 | |
| 4919 | @overload |
| 4920 | def lpop( |
| 4921 | self: SyncClientProtocol, |
| 4922 | name: KeyT, |
| 4923 | count: int | None = None, |
| 4924 | ) -> bytes | str | list[bytes | str] | None: ... |
| 4925 | |
| 4926 | @overload |
| 4927 | def lpop( |