From fcb65d92cbf5ebd13ce127509108c780e23a6703 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Wed, 10 Aug 2022 14:29:43 +0200 Subject: [PATCH] Refactor argument list indentation --- rcon/console.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rcon/console.py b/rcon/console.py index 5305174..14b013d 100644 --- a/rcon/console.py +++ b/rcon/console.py @@ -131,7 +131,11 @@ def process_input(client: BaseClient, passwd: str, prompt: str) -> bool: def rconcmd( - client_cls: Type[BaseClient], host: str, port: int, passwd: str, *, + client_cls: Type[BaseClient], + host: str, + port: int, + passwd: str, + *, prompt: str = PROMPT ): """Initialize the console."""