Skip to content

Commit 4bace81

Browse files
committed
Fix linting.
1 parent f580602 commit 4bace81

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rflinkproxy/__main__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,10 @@ def main(argv=sys.argv[1:], loop=None):
300300
proxy = RFLinkProxy(port=port, host=host, baud=baud, loop=loop)
301301

302302
server_coro = asyncio.start_server(
303-
proxy.client_connected_callback, host="", port=listenport, loop=loop,
303+
proxy.client_connected_callback,
304+
host="",
305+
port=listenport,
306+
loop=loop,
304307
)
305308

306309
server = loop.run_until_complete(server_coro)

0 commit comments

Comments
 (0)