mirror of
https://github.com/meshcore-dev/meshcore-cli.git
synced 2026-04-20 22:13:48 +00:00
Merge pull request #5 from zt4/patch-1
Fix quotes so it runs under Raspberry Pi with Python 3.11
This commit is contained in:
commit
4bf636f6e4
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue