Browse Source

Remove TypeAlias because it is not available in Python 3.7

typing
Gabriel Huber 2 years ago
parent
commit
898c8b87c4
  1. 4
      a2s/info.py
  2. 4
      a2s/players.py

4
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):

4
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):

Loading…
Cancel
Save