Fix quotes so it runs under Raspberry Pi with Python 3.11

Replace double quotes with single quotes, within double quotes.
This commit is contained in:
zt4 2025-07-15 19:40:10 -03:00 committed by GitHub
parent 6ae1100b55
commit eebfcc0787
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()