From f950b2a3bdc9e9c590dc9024bbbf731a44aba156 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 21 Aug 2022 16:21:48 +0200 Subject: [PATCH] Remove trailing commas --- rcon/source/async_rcon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcon/source/async_rcon.py b/rcon/source/async_rcon.py index ba28609..4ee6980 100644 --- a/rcon/source/async_rcon.py +++ b/rcon/source/async_rcon.py @@ -22,7 +22,7 @@ async def communicate( packet: Packet, *, frag_threshold: int = 4096, - frag_detect_cmd: str = '', + frag_detect_cmd: str = '' ) -> Packet: """Make an asynchronous request.""" @@ -49,7 +49,7 @@ async def rcon( passwd: str, encoding: str = 'utf-8', frag_threshold: int = 4096, - frag_detect_cmd: str = '', + frag_detect_cmd: str = '' ) -> str: """Run a command asynchronously."""