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.
2 parents 23e7e89 + de0d09f commit 26686b4Copy full SHA for 26686b4
CHANGELOG.md
@@ -1,7 +1,9 @@
1
# Change Log
2
3
+## [2.0.1]
4
### Updated
5
- Make client compatible with python 3
6
+- Correct data extraction validator to accept columns: all
7
8
## [2.0.0]
9
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