diff options
author | AvitalFineRedis <avital.fine@redislabs.com> | 2021-10-14 11:48:56 +0200 |
---|---|---|
committer | AvitalFineRedis <avital.fine@redislabs.com> | 2021-10-14 11:48:56 +0200 |
commit | 5fb24c43af334d16878c0db5104270a76e73f188 (patch) | |
tree | eeba5e22e57ccbcd4d55b326525c08bc54330b52 /redis/commands.py | |
parent | 9c34614c1a998267b2ea454544a0fff243c0b943 (diff) | |
download | redis-py-5fb24c43af334d16878c0db5104270a76e73f188.tar.gz |
Throw NotImplementedError
Diffstat (limited to 'redis/commands.py')
-rw-r--r-- | redis/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands.py b/redis/commands.py index bcb1c84..23b5aac 100644 --- a/redis/commands.py +++ b/redis/commands.py @@ -584,7 +584,7 @@ class Commands: "MEMORY DOCTOR is intentionally not implemented in the client." ) - def memory_HELP(self): + def memory_help(self): raise NotImplementedError( "MEMORY HELP is intentionally not implemented in the client." ) |