From 231a8578138d31b8fce8779604ad35331fd653fc Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 14 May 2023 15:16:21 +0200 Subject: [PATCH] Fix mypy errors --- game/dcs/unittype.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game/dcs/unittype.py b/game/dcs/unittype.py index c0678278..aa977987 100644 --- a/game/dcs/unittype.py +++ b/game/dcs/unittype.py @@ -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