fix: remove ping_interval param and localhost arg

This commit is contained in:
2024-07-23 21:47:28 +01:00
parent a6d6487df3
commit fa49faea5f

View File

@@ -22,7 +22,7 @@ async def handler(websocket):
async def main():
async with serve(handler, "localhost", 8001, ping_interval=5):
async with serve(handler, "", 8001):
await asyncio.Future()