From 176148b31ac6ebb5596589dad3a50839f65b0874 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Fri, 2 Feb 2024 20:08:31 +0100 Subject: [PATCH] Black --- rcon/source/client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rcon/source/client.py b/rcon/source/client.py index 0edc0fc..44a2129 100644 --- a/rcon/source/client.py +++ b/rcon/source/client.py @@ -64,7 +64,9 @@ class Client(BaseClient, socket_type=SOCK_STREAM): return True - def run(self, command: str, *args: str, encoding: str = "utf-8", enforce_id: bool = True) -> str: + def run( + self, command: str, *args: str, encoding: str = "utf-8", enforce_id: bool = True + ) -> str: """Run a command.""" request = Packet.make_command(command, *args, encoding=encoding) response = self.communicate(request)