-
-
Notifications
You must be signed in to change notification settings - Fork 429
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 missing methods #721
base: master
Are you sure you want to change the base?
Add missing methods #721
Conversation
@WisdomPill Can you tell why the checks are failling and how solver it? Also I would like know what is the purpose of what is inside the "Changelog.d" folder. |
@LucianaAG you need to use About changeling you need to create a file inside |
…ango-redis into add-missing-methods
for more information, see https://pre-commit.ci
…ango-redis into add-missing-methods
for more information, see https://pre-commit.ci
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.
I've pointed out where changes are needed to fix errors in CI
django_redis/client/default.py
Outdated
*keys, | ||
version: Optional[int] = None, | ||
client: Optional[Redis] = None, | ||
) -> set: |
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.
you need to change this one to Set
django_redis/client/default.py
Outdated
key: Any, | ||
version: Optional[int] = None, | ||
client: Optional[Redis] = None, | ||
) -> set: |
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.
you need to change this one to Set
maybe it's not always a set, have you checked redis-py
django_redis/client/default.py
Outdated
count: Optional[int] = None, | ||
version: Optional[int] = None, | ||
client: Optional[Redis] = None, | ||
) -> Union[set, Any]: |
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.
you need to change this one to Set
maybe it's not always a set, have you checked redis-py
django_redis/client/default.py
Outdated
count: Optional[int] = None, | ||
version: Optional[int] = None, | ||
client: Optional[Redis] = None, | ||
) -> Union[set, Any]: |
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.
you need to change this one to Set
maybe it's not always a set, have you checked redis-py
django_redis/client/default.py
Outdated
*keys, | ||
version: Optional[int] = None, | ||
client: Optional[Redis] = None, | ||
) -> set: |
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.
you need to change this one to Set
django_redis/client/default.py
Outdated
count: Optional[int] = None, | ||
version: Optional[int] = None, | ||
client: Optional[Redis] = None, | ||
) -> set[Any]: |
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.
you need to change this one to Set
Continuation of #654 PR. The previous left it halfway.