diff options
Diffstat (limited to 'redis/client.py')
-rwxr-xr-x | redis/client.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/redis/client.py b/redis/client.py index 2e58ff4..161fad8 100755 --- a/redis/client.py +++ b/redis/client.py @@ -448,9 +448,7 @@ class StrictRedis(object): 'CLUSTER SETSLOT': bool_ok, 'CLUSTER SLAVES': parse_cluster_nodes, 'GEOPOS': lambda r: list(map(lambda ll: (float(ll[0]), - float(ll[1])) if ll is not None else None, - r - )), + float(ll[1])) if ll is not None else None, r)), 'GEOHASH': lambda r: list(map(nativestr, r)), 'GEORADIUS': parse_georadius_generic, 'GEORADIUSBYMEMBER': parse_georadius_generic, |