mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Remove unused piece of db.py.
There aren't any references to this field in the project.
This commit is contained in:
parent
52ed6f3f94
commit
758feab413
12
game/db.py
12
game/db.py
@ -4,16 +4,11 @@ from typing import Optional, Type
|
|||||||
|
|
||||||
from dcs.countries import country_dict
|
from dcs.countries import country_dict
|
||||||
from dcs.helicopters import (
|
from dcs.helicopters import (
|
||||||
OH_58D,
|
|
||||||
helicopter_map,
|
helicopter_map,
|
||||||
)
|
)
|
||||||
|
|
||||||
# mypy can't resolve these if they're wildcard imports for some reason.
|
# mypy can't resolve these if they're wildcard imports for some reason.
|
||||||
from dcs.planes import (
|
from dcs.planes import (
|
||||||
B_17G,
|
|
||||||
F_16C_50,
|
|
||||||
Ju_88A4,
|
|
||||||
P_51D_30_NA,
|
|
||||||
plane_map,
|
plane_map,
|
||||||
)
|
)
|
||||||
from dcs.ships import (
|
from dcs.ships import (
|
||||||
@ -184,10 +179,3 @@ def country_id_from_name(name: str) -> int:
|
|||||||
class DefaultLiveries:
|
class DefaultLiveries:
|
||||||
class Default(Enum):
|
class Default(Enum):
|
||||||
af_standard = ""
|
af_standard = ""
|
||||||
|
|
||||||
|
|
||||||
OH_58D.Liveries = DefaultLiveries
|
|
||||||
F_16C_50.Liveries = DefaultLiveries # type: ignore
|
|
||||||
P_51D_30_NA.Liveries = DefaultLiveries
|
|
||||||
Ju_88A4.Liveries = DefaultLiveries
|
|
||||||
B_17G.Liveries = DefaultLiveries
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user