Fix type-only import that needs to be real.

Fixes https://github.com/dcs-liberation/dcs_liberation/issues/2660.
This commit is contained in:
Dan Albert 2022-12-21 12:20:29 -08:00
parent 0fd0f0e7c0
commit fc3e72bacf

View File

@ -4,6 +4,7 @@ from typing import Any, TYPE_CHECKING, Type
from game.ato import FlightType from game.ato import FlightType
from game.theater.controlpoint import NavalControlPoint from game.theater.controlpoint import NavalControlPoint
from game.theater.frontline import FrontLine
from .aewc import AewcFlightPlan from .aewc import AewcFlightPlan
from .airassault import AirAssaultFlightPlan from .airassault import AirAssaultFlightPlan
from .airlift import AirliftFlightPlan from .airlift import AirliftFlightPlan
@ -28,7 +29,6 @@ from .theaterrefueling import TheaterRefuelingFlightPlan
if TYPE_CHECKING: if TYPE_CHECKING:
from game.ato import Flight from game.ato import Flight
from game.theater import FrontLine
class FlightPlanBuilderTypes: class FlightPlanBuilderTypes: