Skip to content

Commit 74caee2

Browse files
committed
modify commands to use byte type instead of string.
1 parent 34d596e commit 74caee2

File tree

6 files changed

+293
-294
lines changed

6 files changed

+293
-294
lines changed

pyredis/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Client(
2121
):
2222
""" Base Client for Talking to Redis.
2323
24-
Inherits the following Commmand classes:
24+
Inherits the following Command classes:
2525
- commands.Connection,
2626
- commands.Hash,
2727
- commands.HyperLogLog,
@@ -346,7 +346,7 @@ class HashClient(
346346
distribute the key spaces evenly between available pairs.
347347
348348
--- Warning ---
349-
Since this is static hashing, the the order of pairs has to match on each client you use!
349+
Since this is static hashing, the order of pairs has to match on each client you use!
350350
Also changing the number of pairs will change the mapping between buckets and pairs,
351351
rendering your data inaccessible!
352352

0 commit comments

Comments
 (0)