summaryrefslogtreecommitdiffstats
path: root/iredis/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/commands.py')
-rw-r--r--iredis/commands.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/iredis/commands.py b/iredis/commands.py
index 358c8b7..dcd457f 100644
--- a/iredis/commands.py
+++ b/iredis/commands.py
@@ -94,7 +94,6 @@ commands_summary.update(
"PEEK": {
"summary": "Get the key's type and value.",
"arguments": [{"name": "key", "type": "key"}],
- "since": "1.0",
"complexity": "O(1).",
"since": "1.0",
"group": "iredis",
@@ -135,7 +134,7 @@ def split_command_args(command):
input_args = command[matcher.end() :]
break
else:
- raise InvalidArguments(f"`{command}` is not a valide Redis Command")
+ raise InvalidArguments(f"`{command}` is not a valid Redis Command")
args = list(strip_quote_args(input_args))