diff --git a/a2s/info.py b/a2s/info.py index 3d7e3a3..b814d8a 100644 --- a/a2s/info.py +++ b/a2s/info.py @@ -1,6 +1,6 @@ from __future__ import annotations -from typing import Optional, Tuple, Union, TypeAlias +from typing import Optional, Tuple, Union from a2s.a2s_async import request_async from a2s.a2s_sync import request_sync @@ -14,7 +14,7 @@ from .byteio import ByteReader A2S_INFO_RESPONSE = 0x49 A2S_INFO_RESPONSE_LEGACY = 0x6D -StrOrBytes: TypeAlias = Union[str, bytes] +StrOrBytes = Union[str, bytes] class SourceInfo(metaclass=DataclsMeta): diff --git a/a2s/players.py b/a2s/players.py index c0d6db6..790a765 100644 --- a/a2s/players.py +++ b/a2s/players.py @@ -1,4 +1,4 @@ -from typing import List, Optional, Tuple, Union, TypeAlias +from typing import List, Optional, Tuple, Union from a2s.a2s_async import request_async from a2s.a2s_protocol import A2SProtocol @@ -9,7 +9,7 @@ from a2s.defaults import DEFAULT_ENCODING, DEFAULT_TIMEOUT A2S_PLAYER_RESPONSE = 0x44 -StrOrBytes: TypeAlias = Union[str, bytes] +StrOrBytes = Union[str, bytes] class Player(metaclass=DataclsMeta):