summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2017-07-31 12:08:31 -0400
committerAndy McCurdy <andy@andymccurdy.com>2017-07-31 12:08:31 -0400
commitd4628f383f0c4505175d234cc62189fa459ede2d (patch)
tree9cbeb6087f194498888322a7f07081813d5c653f
parenta2b4a80bdc4ae40df9b7500fa482954b609a4fdc (diff)
downloadredis-py-d4628f383f0c4505175d234cc62189fa459ede2d.tar.gz
pep8
-rwxr-xr-xredis/client.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index ed4e9dd..84a471c 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -2011,7 +2011,10 @@ class StrictRedis(object):
return self.execute_command('HVALS', name)
def hstrlen(self, name, key):
- "Return the number of bytes stored in the value of ``key`` within hash ``name``"
+ """
+ Return the number of bytes stored in the value of ``key``
+ within hash ``name``
+ """
return self.execute_command('HSTRLEN', name, key)
def publish(self, channel, message):