Skip to content

Commit

Permalink
Fix linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johan Bloemberg committed Nov 26, 2020
1 parent f580602 commit 4bace81
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rflinkproxy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,10 @@ def main(argv=sys.argv[1:], loop=None):
proxy = RFLinkProxy(port=port, host=host, baud=baud, loop=loop)

server_coro = asyncio.start_server(
proxy.client_connected_callback, host="", port=listenport, loop=loop,
proxy.client_connected_callback,
host="",
port=listenport,
loop=loop,
)

server = loop.run_until_complete(server_coro)
Expand Down

0 comments on commit 4bace81

Please sign in to comment.