From 990ea9cad66e517b16269b92cd53c3947f8f559a Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Thu, 7 Jan 2021 17:59:01 +0100 Subject: [PATCH] Updated type hint. --- rcon/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcon/config.py b/rcon/config.py index d2a9c13..b2619ed 100644 --- a/rcon/config.py +++ b/rcon/config.py @@ -8,7 +8,7 @@ from logging import getLogger from os import getenv, name from pathlib import Path from sys import exit # pylint: disable=W0622 -from typing import Iterable, NamedTuple, Union +from typing import Iterable, NamedTuple, Optional, Union __all__ = ['CONFIG_FILES', 'LOG_FORMAT', 'SERVERS', 'Config', 'from_args'] @@ -40,7 +40,7 @@ class Config(NamedTuple): host: str port: int - passwd: str = None + passwd: Optional[str] = None @classmethod def from_string(cls, string: str) -> Config: