We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a0bcd commit 61d0755Copy full SHA for 61d0755
openhtf/core/test_state.py
@@ -844,7 +844,7 @@ def _set_postdiagnosis_phase_outcome(self) -> None:
844
if self.phase_record.outcome == test_record.PhaseOutcome.ERROR:
845
return
846
# Check for errors during diagnoser execution.
847
- if self.result is None or self.result.is_terminal:
+ if self.result is None or self.result.is_terminal: # pytype: disable=attribute-error # always-use-return-annotations
848
self.logger.debug('Phase outcome of %s is ERROR due to diagnoses.',
849
self.name)
850
self.phase_record.outcome = test_record.PhaseOutcome.ERROR
0 commit comments