Formatting

This commit is contained in:
Raffson 2024-01-20 22:29:56 +01:00
parent 9ab8e15dd1
commit d6026681ee
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99
2 changed files with 8 additions and 5 deletions

View File

@ -97,10 +97,7 @@ class FlightType(Enum):
@property @property
def is_escort_type(self) -> bool: def is_escort_type(self) -> bool:
return self in { return self in {FlightType.ESCORT, FlightType.SEAD_ESCORT}
FlightType.ESCORT,
FlightType.SEAD_ESCORT
}
@property @property
def entity_type(self) -> AirEntity: def entity_type(self) -> AirEntity:

View File

@ -1,5 +1,11 @@
from dcs.point import MovingPoint from dcs.point import MovingPoint
from dcs.task import OptECMUsing, OptFormation, RunScript, SetUnlimitedFuelCommand, SwitchWaypoint from dcs.task import (
OptECMUsing,
OptFormation,
RunScript,
SetUnlimitedFuelCommand,
SwitchWaypoint,
)
from .pydcswaypointbuilder import PydcsWaypointBuilder from .pydcswaypointbuilder import PydcsWaypointBuilder