From f7a67a9ac1c0d9145963af11e43bcdebe6f13727 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 8 Nov 2022 13:37:32 +0100 Subject: [PATCH] Update docstring --- rcon/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/client.py b/rcon/client.py index 1c39442..6308d50 100644 --- a/rcon/client.py +++ b/rcon/client.py @@ -14,7 +14,7 @@ class BaseClient: timeout: float | None = None, passwd: str | None = None ): - """Initialize the base client with the SOCK_STREAM socket type.""" + """Initialize the base client.""" self._socket = socket(type=self._socket_type) self.host = host self.port = port