Fix mypy errors

This commit is contained in:
Raffson
2023-05-14 15:16:21 +02:00
parent 40f4b1c926
commit 231a857813

View File

@@ -3,7 +3,8 @@ from __future__ import annotations
from abc import ABC
from dataclasses import dataclass
from functools import cached_property
from typing import ClassVar, Generic, Iterator, Self, Type, TypeVar
from typing import ClassVar, Generic, Iterator, Type, TypeVar
from typing_extensions import Self
from dcs.unittype import UnitType as DcsUnitType