Browse Source

Default timeout to None

pull/26/head
Richard Neumann 1 year ago
parent
commit
e277505a46
  1. 2
      rcon/source/async_rcon.py

2
rcon/source/async_rcon.py

@ -51,7 +51,7 @@ async def rcon(
encoding: str = "utf-8",
frag_threshold: int = 4096,
frag_detect_cmd: str = "",
timeout: int | None,
timeout: int | None = None,
) -> str:
"""Run a command asynchronously."""

Loading…
Cancel
Save