Fix mypy errors

This commit is contained in:
Raffson 2023-05-14 15:16:21 +02:00
parent 40f4b1c926
commit 231a857813
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99

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