Skip to content

Commit

Permalink
[uss_qualifier] Remove exception note (#611)
Browse files Browse the repository at this point in the history
* Remove exception note

* Re-add empty exit
  • Loading branch information
BenjaminPelletier authored Mar 27, 2024
1 parent f6263b1 commit 93cfeaf
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions monitoring/uss_qualifier/scenarios/astm/utm/test_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,7 @@ def __enter__(self) -> OpIntentValidator:
return self

def __exit__(self, exc_type, exc_val, exc_tb):
if exc_type is not None:
self._scenario.record_note(
self._flight_planner.participant_id,
f"Exception occurred during OpIntentValidator ({exc_type}: {exc_val}).",
)
raise exc_val
pass

def _find_after_oi(self, oi_id: str) -> Optional[OperationalIntentReference]:
found = [oi_ref for oi_ref in self._after_oi_refs if oi_ref.id == oi_id]
Expand Down

0 comments on commit 93cfeaf

Please sign in to comment.