From eebfcc0787273d4e457c095ea4eb0932ddd5ec05 Mon Sep 17 00:00:00 2001 From: zt4 <36972152+zt4@users.noreply.github.com> Date: Tue, 15 Jul 2025 19:40:10 -0300 Subject: [PATCH] Fix quotes so it runs under Raspberry Pi with Python 3.11 Replace double quotes with single quotes, within double quotes. --- src/meshcore_cli/meshcore_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index 944af82..c48ee7d 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -1464,7 +1464,7 @@ async def next_cmd(mc, cmds, json_output=False): print(json.dumps(mc.pending_contacts, indent=4)) else: for c in mc.pending_contacts.items(): - print(f"{c[1]["adv_name"]}: {c[1]["public_key"]}") + print(f"{c[1]['adv_name']}: {c[1]['public_key']}") case "flush_pending": mc.flush_pending_contacts()