Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Feb 9, 2025
1 parent 8b235d2 commit a9b8c39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/broadcast_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ async def run(self):
def listener_factory(r: WSUpgradeRequest):
return ServerClientListener(self._all_clients)

self._asyncio_server = await ws_create_server(listener_factory,
"127.0.0.1", 9001)
self._asyncio_server = await ws_create_server(listener_factory, "127.0.0.1", 9001)
for s in self._asyncio_server.sockets:
print(f"Server started on {s.getsockname()}")

Expand Down

0 comments on commit a9b8c39

Please sign in to comment.