8000 Add missing redis modules and classes by srittau · Pull Request #7676 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Add missing redis modules and classes #7676

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
May 4, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
  • Loading branch information
pre-commit-ci[bot] committed Apr 22, 2022
commit 1172889468329bc14b45fd343b90a026c92c6e5f
4 changes: 1 addition & 3 deletions stubs/redis/redis/commands/core.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -410,9 +410,7 @@ class StreamCommands:
self, groupname, consumername, streams, count: Any | None = ..., block: Any | None = ..., noack: bool = ...
): ...
def xrevrange(self, name, max: str = ..., min: str = ..., count: Any | None = ...): ...
def xtrim(
self, name, maxlen: int, approximate: bool = ..., minid: Any | None = ..., limit: Any | None = ...
): ...
def xtrim(self, name, maxlen: int, approximate: bool = ..., minid: Any | None = ..., limit: Any | None = ...): ...

class SortedSetCommands(Generic[_StrType]):
def zadd(
Expand Down
0