summaryrefslogtreecommitdiff
path: root/redis/commands/timeseries/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/timeseries/__init__.py')
-rw-r--r--redis/commands/timeseries/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/redis/commands/timeseries/__init__.py b/redis/commands/timeseries/__init__.py
index 83fa170..5ce538f 100644
--- a/redis/commands/timeseries/__init__.py
+++ b/redis/commands/timeseries/__init__.py
@@ -34,7 +34,7 @@ class TimeSeries(TimeSeriesCommands):
functionality.
"""
- def __init__(self, client=None, version=None, **kwargs):
+ def __init__(self, client=None, **kwargs):
"""Create a new RedisTimeSeries client."""
# Set the module commands' callbacks
self.MODULE_CALLBACKS = {
@@ -55,7 +55,6 @@ class TimeSeries(TimeSeriesCommands):
self.client = client
self.execute_command = client.execute_command
- self.MODULE_VERSION = version
for key, value in self.MODULE_CALLBACKS.items():
self.client.set_response_callback(key, value)