Follow-up on dependency updates

This commit is contained in:
Raffson
2023-07-15 17:46:58 +02:00
parent 6c87421c26
commit 009debd4e8
4 changed files with 15 additions and 13 deletions

View File

@@ -25,7 +25,7 @@ class PlanOcaStrike(PackagePlanningTask[ControlPoint]):
def propose_flights(self) -> None:
size = self.get_flight_size()
if self.target.cptype == self.target.cptype.AIRBASE:
self.propose_flight(FlightType.OCA_RUNWAY, size)
self.propose_flight(FlightType.OCA_RUNWAY, size) # type:ignore[unreachable]
if self.aircraft_cold_start:
self.propose_flight(FlightType.OCA_AIRCRAFT, 2)
self.propose_common_escorts()