Skip to content

Commit 4c78695

Browse files
committed
correct f-string
1 parent a35aa83 commit 4c78695

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "meshcore-cli"
7-
version = "0.6.2"
7+
version = "0.6.3"
88
authors = [
99
{ name="Florent de Lamotte", email="[email protected]" },
1010
]

src/meshcore_cli/meshcore_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ async def next_cmd(mc, cmds, json_output=False):
541541
if json_output :
542542
print(json.dumps({"print_snr" : process_event_message.print_snr}))
543543
else:
544-
print(f"{"on" if process_event_message.print_snr else "off"}")
544+
print(f"{'on' if process_event_message.print_snr else 'off'}")
545545
case "name":
546546
if json_output :
547547
print(json.dumps(mc.self_info["name"]))

0 commit comments

Comments
 (0)