Browse Source

Use | operator instead of Optional and Union

pull/8/head
Richard Neumann 3 years ago
parent
commit
2415bce364
  1. 6
      rcon/battleye/proto.py
  2. 5
      rcon/client.py
  3. 6
      rcon/config.py

6
rcon/battleye/proto.py

@ -1,7 +1,7 @@
"""Low-level protocol stuff.""" """Low-level protocol stuff."""
from __future__ import annotations from __future__ import annotations
from typing import NamedTuple, Union from typing import NamedTuple
from zlib import crc32 from zlib import crc32
@ -172,8 +172,8 @@ class ServerMessage(NamedTuple):
return self.payload.decode('ascii') return self.payload.decode('ascii')
Request = Union[LoginRequest, CommandRequest] Request = LoginRequest | CommandRequest
Response = Union[LoginResponse, CommandResponse, ServerMessage] Response = LoginResponse | CommandResponse | ServerMessage
RESPONSE_TYPES = { RESPONSE_TYPES = {
0x00: LoginResponse, 0x00: LoginResponse,

5
rcon/client.py

@ -1,7 +1,6 @@
"""Common base client.""" """Common base client."""
from socket import SocketKind, socket from socket import SocketKind, socket
from typing import Optional
__all__ = ['BaseClient'] __all__ = ['BaseClient']
@ -12,8 +11,8 @@ class BaseClient:
def __init__( def __init__(
self, host: str, port: int, *, self, host: str, port: int, *,
timeout: Optional[float] = None, timeout: float | None = None,
passwd: Optional[str] = None passwd: str | None = None
): ):
"""Initializes the base client with the SOCK_STREAM socket type.""" """Initializes the base client with the SOCK_STREAM socket type."""
self._socket = socket(type=self._socket_type) self._socket = socket(type=self._socket_type)

6
rcon/config.py

@ -7,7 +7,7 @@ from getpass import getpass
from logging import getLogger from logging import getLogger
from os import getenv, name from os import getenv, name
from pathlib import Path from pathlib import Path
from typing import Iterable, NamedTuple, Optional, Union from typing import Iterable, NamedTuple
from rcon.exceptions import ConfigReadError, UserAbort from rcon.exceptions import ConfigReadError, UserAbort
@ -41,7 +41,7 @@ class Config(NamedTuple):
host: str host: str
port: int port: int
passwd: Optional[str] = None passwd: str | None = None
@classmethod @classmethod
def from_string(cls, string: str) -> Config: def from_string(cls, string: str) -> Config:
@ -71,7 +71,7 @@ class Config(NamedTuple):
return cls(host, port, passwd) return cls(host, port, passwd)
def load(config_files: Union[Path, Iterable[Path]] = CONFIG_FILES) -> None: def load(config_files: Path | Iterable[Path] = CONFIG_FILES) -> None:
"""Reads the configuration files and populates SERVERS.""" """Reads the configuration files and populates SERVERS."""
SERVERS.clear() SERVERS.clear()

Loading…
Cancel
Save