diff --git a/openlane/steps/step.py b/openlane/steps/step.py index 2871b111..03f247a1 100644 --- a/openlane/steps/step.py +++ b/openlane/steps/step.py @@ -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}'"