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]