chore: add del to groups and devices

This commit is contained in:
DaanSelen
2026-01-15 13:38:31 +01:00
parent cc454dff40
commit ea77ea1904
+2
View File
@@ -103,10 +103,12 @@ async def main():
meshbook["group"] = args.group meshbook["group"] = args.group
if "device" in meshbook: if "device" in meshbook:
del meshbook["device"] del meshbook["device"]
del meshbook["devices"]
elif args.device != "": elif args.device != "":
meshbook["device"] = args.device meshbook["device"] = args.device
if "group" in meshbook: if "group" in meshbook:
del meshbook["group"] del meshbook["group"]
del meshbook["groups"]
''' '''
The following section mainly displays used variables and first steps of the program to the Console. The following section mainly displays used variables and first steps of the program to the Console.