From 8c0063b2aa0fb838f14423b3028ebcc1f9786303 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Fri, 25 Dec 2020 23:43:42 +0100 Subject: [PATCH] Improved type hints. --- rcon/proto.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rcon/proto.py b/rcon/proto.py index e116502..7056bf7 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -5,7 +5,7 @@ from enum import Enum from logging import getLogger from random import randint from socket import SOCK_STREAM, socket -from typing import NamedTuple +from typing import NamedTuple, Optional from rcon.exceptions import RequestIdMismatch from rcon.exceptions import WrongPassword @@ -121,8 +121,9 @@ class Client: __slots__ = ('_socket', 'host', 'port', 'timeout', 'passwd') - def __init__(self, host: str, port: int, *, timeout: float = None, - passwd: str = None): + def __init__(self, host: str, port: int, *, + timeout: Optional[float] = None, + passwd: Optional[str] = None): """Initializes the base client with the SOCK_STREAM socket type.""" self._socket = socket(type=SOCK_STREAM) self.host = host