Skip to content

Commit

Permalink
Fix variable annotation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Jan 7, 2023
1 parent 726fc0b commit 5c28f05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hammeraddons/propcombine.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ async def compile_func(
lookup_model, volume_tolerance = args

# Unify these properties.
surfprops = set() # type: Set[str]
cdmats = set() # type: Set[str]
contents = set() # type: Set[int]
surfprops: Set[str] = set()
cdmats: Set[str] = set()
contents: Set[int] = set()

for prop in prop_pos:
qc, mdl = lookup_model(prop.model)
Expand Down

0 comments on commit 5c28f05

Please sign in to comment.