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 35b2f5d commit 01ebee1Copy full SHA for 01ebee1
src/DataValidation.py
@@ -270,10 +270,10 @@ def checkStartingItemsForBadSyntax():
270
@staticmethod
271
def checkPlacedItemsAndCategoriesForBadSyntax():
272
for location in DataValidation.location_table:
273
- if not (place_item := location.get("place_item", False)):
274
- continue
+ place_item = location.get("place_item", False)
+ place_item_category = location.get("place_item_category", False)
275
276
- if not (place_item_category := location.get("place_item_category", False)):
+ if not place_item and not place_item_category:
277
continue
278
279
if place_item and type(place_item) is not list:
0 commit comments