Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
harrypuuter committed Sep 7, 2023
1 parent 7fe03a8 commit a9545d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code_generation/friend_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ def _validate_inputs(self) -> None:
[x.name for x in producer.get_outputs(scope)]
)
# get all available inputs
for input in self.input_quantities_mapping[scope][""]:
available_inputs.add(input)
for input_quantitiy in self.input_quantities_mapping[scope][""]:
available_inputs.add(input_quantitiy)
# now check if all inputs are available
missing_inputs = required_inputs - available_inputs
if len(missing_inputs) > 0:
Expand Down

0 comments on commit a9545d2

Please sign in to comment.