We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e7e89 commit ee1c568Copy full SHA for ee1c568
pyslicer/utils/validators.py
@@ -191,7 +191,7 @@ def _valid_keys(self):
191
"""
192
if "columns" in self.data:
193
value = self.data["columns"]
194
- if not isinstance(value, list):
+ if not isinstance(value, list) and value != "all":
195
raise exceptions.InvalidQueryException(
196
"The key 'columns' in query has a invalid value.")
197
else:
0 commit comments