diff options
author | Abraham Toriz <awonderfulcode@gmail.com> | 2017-08-10 12:46:05 -0500 |
---|---|---|
committer | Abraham Toriz <awonderfulcode@gmail.com> | 2017-08-10 12:46:05 -0500 |
commit | 5a43b78181f6b99076e112d7765bfed3fcd3d84f (patch) | |
tree | f775f2ef359bc1f1c9752731a5209003c175ebb7 /redis/client.py | |
parent | f5f111ca94a4488cf3d1b060689e654490e8e1ef (diff) | |
download | redis-py-5a43b78181f6b99076e112d7765bfed3fcd3d84f.tar.gz |
keep style
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, |