From 1ecf441cd81e4be224bf80818621d1dde195457b Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Tue, 25 Feb 2025 21:29:23 -0800 Subject: [PATCH] don't close interfact after region --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index fd47e48..47f47a8 100644 --- a/main.py +++ b/main.py @@ -64,7 +64,7 @@ def main(stdscr): confirmation = get_list_input("Your region is UNSET. Set it now?", "Yes", ["Yes", "No"]) if confirmation == "Yes": set_region() - globals.interface.close() + globals.interface = None globals.interface = initialize_interface(args) logging.info("Interface initialized")