diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-02-02 13:26:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 13:26:29 +0200 |
commit | 7ea1bf7593f72b5e23f7e4efc7890faec8a3dde5 (patch) | |
tree | 6087856103619f5260bebc9142e385c5759cba67 /redis/commands/helpers.py | |
parent | 7f7f4f6c85c2d05e1810b512890ec42f64ffa0b3 (diff) | |
download | redis-py-7ea1bf7593f72b5e23f7e4efc7890faec8a3dde5.tar.gz |
Fix naming conventions (#1872)
* fix naming convention
* fix worng changes
Diffstat (limited to 'redis/commands/helpers.py')
-rw-r--r-- | redis/commands/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands/helpers.py b/redis/commands/helpers.py index afb4f9f..2b873e3 100644 --- a/redis/commands/helpers.py +++ b/redis/commands/helpers.py @@ -117,7 +117,7 @@ def quote_string(v): return f'"{v}"' -def decodeDictKeys(obj): +def decode_dict_keys(obj): """Decode the keys of the given dictionary with utf-8.""" newobj = copy.copy(obj) for k in obj.keys(): |