summaryrefslogtreecommitdiff
path: root/redis/commands/search/aggregation.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/search/aggregation.py')
-rw-r--r--redis/commands/search/aggregation.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/redis/commands/search/aggregation.py b/redis/commands/search/aggregation.py
index b391d1f..3d71329 100644
--- a/redis/commands/search/aggregation.py
+++ b/redis/commands/search/aggregation.py
@@ -345,12 +345,6 @@ class AggregateRequest(object):
self._cursor = args
return self
- def _limit_2_args(self, limit):
- if limit[1]:
- return ["LIMIT"] + [str(x) for x in limit]
- else:
- return []
-
def build_args(self):
# @foo:bar ...
ret = [self._query]