mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
dont export json dict
This commit is contained in:
parent
4d816ae87c
commit
4f497620c8
1 changed files with 2 additions and 1 deletions
|
|
@ -795,7 +795,8 @@ class ReticulumMeshChat:
|
|||
# add interface to output
|
||||
output.append(f"[[{interface_name}]]")
|
||||
for key, value in interface.items():
|
||||
output.append(f" {key} = {value}")
|
||||
if not isinstance(value, dict):
|
||||
output.append(f" {key} = {value}")
|
||||
output.append("")
|
||||
|
||||
# Handle sub-interfaces for RNodeMultiInterface
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue