diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2017-07-31 12:08:31 -0400 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2017-07-31 12:08:31 -0400 |
commit | d4628f383f0c4505175d234cc62189fa459ede2d (patch) | |
tree | 9cbeb6087f194498888322a7f07081813d5c653f | |
parent | a2b4a80bdc4ae40df9b7500fa482954b609a4fdc (diff) | |
download | redis-py-d4628f383f0c4505175d234cc62189fa459ede2d.tar.gz |
pep8
-rwxr-xr-x | redis/client.py | 5 |
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): |