Changeset 1059:07ffbc5c13f8 for src
- Timestamp:
- 08/27/22 07:28:56 (2 years ago)
- Branch:
- python3
- Phase:
- public
- Tags:
- version_0.50.3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r1043 r1059 1297 1297 class NavLightsChecker(PatientFaultChecker): 1298 1298 """Check if the navigational lights are used properly.""" 1299 def __init__(self): 1300 """Construct the NAV lights checker.""" 1301 super(NavLightsChecker, self).__init__(timeout = 5.0) 1302 1299 1303 def isCondition(self, flight, aircraft, oldState, state): 1300 1304 """Check if the fault condition holds.""" … … 1565 1569 class StrobeLightsChecker(PatientFaultChecker): 1566 1570 """Check if the strobe lights are used properly.""" 1571 def __init__(self): 1572 """Construct the Strobe lights checker.""" 1573 super(StrobeLightsChecker, self).__init__(timeout = 5.0) 1574 1567 1575 def isCondition(self, flight, aircraft, oldState, state): 1568 1576 """Check if the fault condition holds."""
Note:
See TracChangeset
for help on using the changeset viewer.