CRIT bumped websockets to 14.1 :) found the issue.

This commit is contained in:
2024-11-27 20:38:06 +01:00
parent 9599db6773
commit 5731a09210
2 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ class MeshcallerWebSocket:
print("Attempting WebSocket connection...") print("Attempting WebSocket connection...")
try: try:
async with websockets.connect(uri, extra_headers=ws_headers) as meshsocket: async with websockets.connect(uri, additional_headers=ws_headers) as meshsocket:
self.meshsocket = meshsocket self.meshsocket = meshsocket
await self.ws_on_open() await self.ws_on_open()
await self.gen_simple_list() await self.gen_simple_list()
+4 -5
View File
@@ -1,5 +1,4 @@
asyncio asyncio==3.4.3
argparse configparser==7.1.0
configparser pyyaml==6.0.2
pyyaml websockets==14.1
websockets==13.1