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 ac2d987 commit 7c73f9bCopy full SHA for 7c73f9b
pyslicer/utils/validators.py
@@ -178,7 +178,7 @@ def _has_empty_field(self):
178
if not all(self.data) or not all(self.data.values()):
179
raise exceptions.InvalidIndexException(
180
"This index has invalid keys or values.")
181
- for id, value in self.data.iteritems():
+ for value in self.data.values():
182
# Value is a dictionary when it is an entity being indexed:
183
# "my-entity": {"year": 2016}
184
# It can also be a parameter, such as "auto-create-fields":
0 commit comments