From 898c8b87c4b3ac843c92ad0c7f034a2554c2d8e2 Mon Sep 17 00:00:00 2001 From: Gabriel Huber Date: Wed, 18 Jan 2023 01:47:28 +0100 Subject: [PATCH] Remove TypeAlias because it is not available in Python 3.7 --- a2s/info.py | 4 ++-- a2s/players.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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):