diff options
author | Roey Prat <roey.prat@redislabs.com> | 2018-10-28 10:07:55 +0200 |
---|---|---|
committer | Roey Prat <roey.prat@redislabs.com> | 2018-10-28 14:13:42 +0200 |
commit | 492adbcf1183322edcf9a834ee3636622a109025 (patch) | |
tree | 7d9e9f25c87b4cc06024d7bd43c5d7c75ec44bb7 | |
parent | 8d006b6f1b29424cdae72c1c0d49079de45d2962 (diff) | |
download | redis-py-492adbcf1183322edcf9a834ee3636622a109025.tar.gz |
XADD removing unnecessary stream_key parse function
-rwxr-xr-x | redis/client.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/redis/client.py b/redis/client.py index faa57dd..b982979 100755 --- a/redis/client.py +++ b/redis/client.py @@ -232,10 +232,6 @@ def int_or_none(response): return int(response) -def stream_key(response): - return response - - def stream_list(response): if response is None: return None @@ -424,7 +420,6 @@ class StrictRedis(object): 'GEOADD XLEN', int ), - string_keys_to_dict('XADD', stream_key), string_keys_to_dict('XREVRANGE XRANGE', stream_list), string_keys_to_dict('XREAD XREADGROUP', multi_stream_list), { |