1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-23 04:10:29 +03:00

Merge pull request #2119 from HullSeals/fix/repair-broken-dupe-check

[Fix] Add Required Dupe Imports
This commit is contained in:
Phoebe 2024-01-03 23:55:20 +01:00 committed by GitHub
commit 06b845868a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)