From 5c2a2f3cd3511985bd61575a813e7b8168005019 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 21 Aug 2022 15:08:24 +0200 Subject: [PATCH] Update docstring --- rcon/source/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/source/client.py b/rcon/source/client.py index 53d33ef..a4dc43f 100644 --- a/rcon/source/client.py +++ b/rcon/source/client.py @@ -53,7 +53,7 @@ class Client(BaseClient, socket_type=SOCK_STREAM): file.write(bytes(packet)) def read(self) -> Packet: - """Read a packet.""" + """Read a packet from the server.""" with self._socket.makefile('rb') as file: return Packet.read(file)