Skip to content

Commit 2cc49c5

Browse files
authored
Merge pull request #20 from SlicingDice/feature/remove-limit-check-data-extraction
Remove limit check on data extraction queries
2 parents 78e22d5 + a3de35e commit 2cc49c5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pyslicer/utils/validators.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,6 @@ def _valid_keys(self):
201201
if not isinstance(limit, int):
202202
raise exceptions.InvalidQueryException(
203203
"The key 'limit' in query has a invalid value.")
204-
if limit > 100:
205-
raise exceptions.InvalidQueryException(
206-
"The field 'limit' has a value max of 100.")
207204
return True
208205

209206
def validator(self):

0 commit comments

Comments
 (0)