From ba9be6facb64159eeb2be3bc6af8cab77a86638b Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 14 Feb 2022 09:58:24 +0100 Subject: [PATCH] Rename parameter --- rcon/battleye/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcon/battleye/client.py b/rcon/battleye/client.py index ea36571..1dab69a 100644 --- a/rcon/battleye/client.py +++ b/rcon/battleye/client.py @@ -17,10 +17,10 @@ Host = Union[str, IPv4Address] class Client(BaseClient, socket_type=SOCK_DGRAM): """BattlEye RCon client.""" - def communicate(self, data: bytes, *, size: int = 4096) -> bytes: + def communicate(self, data: bytes, *, read: int = 4096) -> bytes: """Sends and receives packets.""" self._socket.send(data) - return self._socket.recv(size) + return self._socket.recv(read) def login(self, passwd: str) -> bytes: """Logs the user in."""