Migrate to Poetry packaging and restructure codebase #21

Merged
Sudo-Ivan merged 23 commits from codebase-improvements into master 2025-12-01 18:24:25 +00:00
Showing only changes of commit 3231afb84d - Show all commits

View File

@@ -1384,7 +1384,7 @@ class ReticulumMeshChat:
print(e)
elif msg.type == WSMsgType.ERROR:
# ignore errors while handling message
print("ws connection error %s" % websocket_response.exception())
print(f"ws connection error {websocket_response.exception()}")
# websocket closed
self.websocket_clients.remove(websocket_response)
@@ -1707,7 +1707,7 @@ class ReticulumMeshChat:
print(e)
elif msg.type == WSMsgType.ERROR:
# ignore errors while handling message
print("ws connection error %s" % websocket_response.exception())
print(f"ws connection error {websocket_response.exception()}")
# unregister audio packet handler now that the websocket has been closed
audio_call.register_audio_packet_listener(on_audio_packet)