chore(codebase): format

This commit is contained in:
Ivan
2026-05-09 22:50:11 -05:00
parent 57d432bdbd
commit d64cd6baac
4 changed files with 7 additions and 3 deletions
-1
View File
@@ -33,4 +33,3 @@ Electron has to be kept up-to-date with a stable release cycle in order to get a
**Can you make it so MeshChatX uses system RNS/LXMF packages?**
The Python wheels can use system RNS/LXMF, and you can update them easily. With Docker, you can grab the Dockerfile, update it, and build manually. You can also build from source. As for Electron builds, there is not much that can be done right now, but I will keep exploring options.
+1
View File
@@ -30,6 +30,7 @@ def _get_android_external_files_dir() -> str | None:
return None
try:
from com.chaquo.python import Python
context = Python.getPlatform().getApplication()
external = context.getExternalFilesDir(None)
if external is not None:
+6 -1
View File
@@ -724,7 +724,12 @@ class ReticulumMeshChat:
continue
iface_type = iface.get("type", "")
if isinstance(iface_type, str) and iface_type.startswith("RNode"):
if str(iface.get("interface_enabled", "")).lower() in ("true", "yes", "1", "on"):
if str(iface.get("interface_enabled", "")).lower() in (
"true",
"yes",
"1",
"on",
):
iface["interface_enabled"] = "false"
modified = True
if modified:
-1
View File
@@ -1,6 +1,5 @@
# SPDX-License-Identifier: 0BSD
import os
import pytest