Browse Source

Improved type hints.

pull/2/head
Richard Neumann 4 years ago
parent
commit
8c0063b2aa
  1. 7
      rcon/proto.py

7
rcon/proto.py

@ -5,7 +5,7 @@ from enum import Enum
from logging import getLogger from logging import getLogger
from random import randint from random import randint
from socket import SOCK_STREAM, socket from socket import SOCK_STREAM, socket
from typing import NamedTuple from typing import NamedTuple, Optional
from rcon.exceptions import RequestIdMismatch from rcon.exceptions import RequestIdMismatch
from rcon.exceptions import WrongPassword from rcon.exceptions import WrongPassword
@ -121,8 +121,9 @@ class Client:
__slots__ = ('_socket', 'host', 'port', 'timeout', 'passwd') __slots__ = ('_socket', 'host', 'port', 'timeout', 'passwd')
def __init__(self, host: str, port: int, *, timeout: float = None, def __init__(self, host: str, port: int, *,
passwd: str = None): timeout: Optional[float] = None,
passwd: Optional[str] = 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=SOCK_STREAM) self._socket = socket(type=SOCK_STREAM)
self.host = host self.host = host

Loading…
Cancel
Save