Skip to content

Commit

Permalink
Update walltypes_naming_convention_check.py
Browse files Browse the repository at this point in the history
Fixed a syntax error that prevented preflight check tool from running.
  • Loading branch information
tay0thman authored Dec 4, 2024
1 parent 6e5a8c0 commit a76ba6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def check_model(doc, output):
wall_counts = Counter((wall.Name for wall in walls))

# Load wall list from JSON
allowed_wall_names = set(pick_json()["allowed_wall_types"])`"
allowed_wall_names = set(pick_json()["allowed_wall_types"])

# Initialize results dictionary for found and wrong wall types
wrong_wall_names = set(wall_counts) - allowed_wall_names
Expand Down

0 comments on commit a76ba6d

Please sign in to comment.