Skip to content
6 changes: 0 additions & 6 deletions redis/commands/search/aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,12 +345,6 @@ def cursor(self, count=0, max_idle=0.0):
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]
Expand Down
Loading