summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjingchao <jingchaohu@gmail.com>2013-11-27 17:32:09 +0800
committerjingchao <jingchaohu@gmail.com>2013-11-27 17:32:09 +0800
commite64c290d2fddb1becc3c6c9b781160bad25a6605 (patch)
tree6e93c8526271aa08778bb174112a16015361c366
parent2047c61ce88842df511def65893c769ffa9b719c (diff)
downloadredis-py-e64c290d2fddb1becc3c6c9b781160bad25a6605.tar.gz
fix pep8 incompability
-rw-r--r--redis/client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index d133989..2aab8fb 100644
--- a/redis/client.py
+++ b/redis/client.py
@@ -1224,7 +1224,8 @@ class StrictRedis(object):
pieces.append(count)
return self.execute_command('HSCAN', *pieces)
- def zscan(self, name, cursor, match=None, count=None, score_cast_func=float):
+ def zscan(self, name, cursor, match=None, count=None,
+ score_cast_func=float):
"""
Scan and return (nextcursor, pairs)