From 4ef439f1c02f69f0adbeddb35d4f536ab28ab7e7 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Sat, 23 Dec 2023 20:55:32 -0500 Subject: [PATCH] [Fix] Add Required Dupe Imports --- EDMarketConnector.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 87ba6814..53c73e6c 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -336,6 +336,8 @@ if __name__ == '__main__': # noqa: C901 def already_running_popup(): """Create the "already running" popup.""" + import tkinter as tk + from tkinter import ttk # Check for CL arg that suppresses this popup. if args.suppress_dupe_process_popup: sys.exit(0)