diff --git a/redis/commands.py b/redis/commands.py index eb7cea54f6..bc805076a3 100644 --- a/redis/commands.py +++ b/redis/commands.py @@ -3154,6 +3154,11 @@ def module_list(self): """ return self.execute_command('MODULE LIST') + def command_info(self): + raise NotImplementedError( + "COMMAND INFO is intentionally not implemented in the client." + ) + def command_count(self): return self.execute_command('COMMAND COUNT')