From ea77ea19049a8617892d371e7780b7772ddf2328 Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Thu, 15 Jan 2026 13:38:31 +0100 Subject: [PATCH] chore: add del to groups and devices --- meshbook.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshbook.py b/meshbook.py index cc2c02f..d58788e 100644 --- a/meshbook.py +++ b/meshbook.py @@ -103,10 +103,12 @@ async def main(): meshbook["group"] = args.group if "device" in meshbook: del meshbook["device"] + del meshbook["devices"] elif args.device != "": meshbook["device"] = args.device if "group" in meshbook: del meshbook["group"] + del meshbook["groups"] ''' The following section mainly displays used variables and first steps of the program to the Console.