Skip to content

Commit e360469

Browse files
Fix typing in getex command
1 parent 20e4b87 commit e360469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/commands/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def acl_setuser(
256256
For more information see https://redis.io/commands/acl-setuser
257257
"""
258258
encoder = self.get_encoder()
259-
pieces: list[str | bytes] = [username]
259+
pieces: List[EncodableT] = [username]
260260

261261
if reset:
262262
pieces.append(b"reset")

0 commit comments

Comments
 (0)