You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The smismember command is incorrectly typed and tested as returning list[bool] instead of list[Literal[0] | Literal[1]]. See https://redis.io/commands/smismember/.
client = redis.Redis(...)
result = client.smismember('key', ['1', '2'])
result == [0, 0]
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Version:
redis
:7.0.8
redis-py
:4.3.4
Platform:
Any platform.
Description:
The
smismember
command is incorrectly typed and tested as returninglist[bool]
instead oflist[Literal[0] | Literal[1]]
. See https://redis.io/commands/smismember/.The text was updated successfully, but these errors were encountered: