Skip to content

Commit e5e265d

Browse files
Fix typing in getex command (#2088)
1 parent 805b184 commit e5e265d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/commands/core.py

+1-1
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)