Browse Source

Remove trailing commas

pull/14/head 2.3.6
Richard Neumann 3 years ago
parent
commit
f950b2a3bd
  1. 4
      rcon/source/async_rcon.py

4
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."""

Loading…
Cancel
Save