correct f-string

This commit is contained in:
Florent 2025-04-19 08:49:37 +02:00
parent a35aa83126
commit 4c78695b61
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "meshcore-cli"
version = "0.6.2"
version = "0.6.3"
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
]

View file

@ -541,7 +541,7 @@ async def next_cmd(mc, cmds, json_output=False):
if json_output :
print(json.dumps({"print_snr" : process_event_message.print_snr}))
else:
print(f"{"on" if process_event_message.print_snr else "off"}")
print(f"{'on' if process_event_message.print_snr else 'off'}")
case "name":
if json_output :
print(json.dumps(mc.self_info["name"]))