From d6d9699b99c4b3c95e18c5ce733b350ecbbf1da7 Mon Sep 17 00:00:00 2001 From: bilditup1 Date: Mon, 4 Dec 2023 17:35:25 -0500 Subject: [PATCH] match upstream var dec --- host/nxdt_host.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/host/nxdt_host.py b/host/nxdt_host.py index ac851a8..93d066a 100644 --- a/host/nxdt_host.py +++ b/host/nxdt_host.py @@ -321,8 +321,8 @@ g_outputDir: str = '' g_logPath: str = '' g_pathSep: str = '' -g_logLevelIntVar: Optional[tk.IntVar] = None -g_logToFileBoolVar: Optional[tk.BooleanVar] = None +g_logLevelIntVar: tk.IntVar | None = None +g_logToFileBoolVar: tk.BooleanVar | None = None g_osType: str = '' g_osVersion: str = '' @@ -367,7 +367,6 @@ g_nspFile: Optional[BufferedWriter] = None g_nspFilePath: str = '' g_extractedFsDumpMode: bool = False -g_layeredFsDumpMode: bool = False g_formattedFileSize: float = 0 g_fileSizeMiB: float = 0