From cc454dff40002553cfd1ea071dea6014e0b783ad Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Tue, 6 Jan 2026 08:48:33 +0100 Subject: [PATCH] chore: add more ends of sentences --- meshbook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshbook.py b/meshbook.py index 91f84a3..cc2c02f 100644 --- a/meshbook.py +++ b/meshbook.py @@ -166,8 +166,8 @@ async def main(): "Target groups: " + Console.text_color.yellow + str(meshbook["groups"]) + Console.text_color.reset + ".") # RUNNING PARAMETERS PRINTING - Console.print_text(args.silent, "Grace: " + Console.text_color.yellow + str((not args.nograce))) # Negation of bool for correct explanation - Console.print_text(args.silent, "Silent: " + Console.text_color.yellow + "False") # Can be pre-defined because if silent flag was passed then none of this would be printed. + Console.print_text(args.silent, "Grace: " + Console.text_color.yellow + str(not args.nograce) + Console.text_color.reset + ".") # Negation of bool for correct explanation + Console.print_text(args.silent, "Silent: " + Console.text_color.yellow + "False" + Console.text_color.reset + ".") # Can be pre-defined because if silent flag was passed then none of this would be printed. session = await init_connection(credentials)