Browse Source

Update docstring

pull/14/head
Richard Neumann 3 years ago
parent
commit
5c2a2f3cd3
  1. 2
      rcon/source/client.py

2
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)

Loading…
Cancel
Save