Skip to content

Commit

Permalink
hotfix: incorrect error message for misconfigured flows
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Dec 16, 2024
1 parent 59f1752 commit c5d22d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openlane/steps/step.py
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@ def start(
self.start_time = time.time()

for input in self.inputs:
value = state_in_result[input]
value = state_in_result.get(input.id)
if value is None:
raise StepException(
f"{type(self).__name__}: missing required input '{input.id}'"
Expand Down

0 comments on commit c5d22d1

Please sign in to comment.