From d579a201b38eb6bb867e7cc78f2299320cef1dc0 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Thu, 1 Jan 2026 22:45:43 -0600 Subject: [PATCH] refactor(meshchat_wrapper): improve code readability by formatting argument list and adding spacing --- android/app/src/main/python/meshchat_wrapper.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/android/app/src/main/python/meshchat_wrapper.py b/android/app/src/main/python/meshchat_wrapper.py index d625c6a..de627f7 100644 --- a/android/app/src/main/python/meshchat_wrapper.py +++ b/android/app/src/main/python/meshchat_wrapper.py @@ -1,20 +1,23 @@ import sys + def start_server(port=8000): try: from meshchatx.meshchat import main - + sys.argv = [ - 'meshchat', - '--headless', - '--host', '127.0.0.1', - '--port', str(port) + "meshchat", + "--headless", + "--host", + "127.0.0.1", + "--port", + str(port), ] - + main() except Exception as e: print(f"Error starting MeshChatX server: {e}") import traceback + traceback.print_exc() raise -