From f143bbdefbc5c40ca084309b7b947e38f9d035aa Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 31 Mar 2026 17:23:13 +0300 Subject: [PATCH] fix(meshchat): format --- meshchatx/meshchat.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meshchatx/meshchat.py b/meshchatx/meshchat.py index c67aecb..3f2a525 100644 --- a/meshchatx/meshchat.py +++ b/meshchatx/meshchat.py @@ -9590,9 +9590,7 @@ class ReticulumMeshChat: try: if custom_ssl: if not os.path.isfile(cert_path) or not os.path.isfile(key_path): - msg = ( - f"Custom SSL files not found (cert={cert_path!r}, key={key_path!r})" - ) + msg = f"Custom SSL files not found (cert={cert_path!r}, key={key_path!r})" raise FileNotFoundError(msg) ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER) ssl_context.load_cert_chain(cert_path, key_path)