-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Add support for SINTERCARD #1859
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1859 +/- ##
==========================================
+ Coverage 93.60% 93.63% +0.03%
==========================================
Files 76 76
Lines 16214 16225 +11
==========================================
+ Hits 15177 15193 +16
+ Misses 1037 1032 -5
Continue to review full report at Codecov.
|
redis/commands/core.py
Outdated
|
||
For more information check https://redis.io/commands/sintercard | ||
""" | ||
args = [numkeys] + keys + ["LIMIT", limit] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
args = [numkeys, *x, "LIMIT", limit]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WDYT about the args change?
Pull Request check-list
Please make sure to review and check all of these items:
$ tox
pass with this change (including linting)?NOTE: these things are not required to open a PR and can be done
afterwards / while the PR is open.
Description of change
closes #1808