Skip to content

Commit 59df59f

Browse files
import cleanup
1 parent a1734e8 commit 59df59f

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

EDMarketConnector.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@
99
import queue
1010
import re
1111
import sys
12-
import threading
1312
import webbrowser
1413
from builtins import object, str
1514
from os import chdir, environ
1615
from os.path import dirname, join
1716
from sys import platform
1817
from time import localtime, strftime, time
19-
from typing import TYPE_CHECKING, Any, List, Optional, Tuple, cast
20-
21-
import plug
18+
from typing import TYPE_CHECKING, Any, Optional, Tuple, Union
2219

2320
# Have this as early as possible for people running EDMarketConnector.exe
2421
# from cmd.exe or a bat file or similar. Else they might not be in the correct
@@ -551,7 +548,7 @@ def __init__(self, master: tk.Tk): # noqa: C901, CCR001 # TODO - can possibly f
551548

552549
# The type needs defining for adding the menu entry, but won't be
553550
# properly set until later
554-
self.updater: update.Updater = None
551+
self.updater: 'update.Updater' = None # type: ignore
555552

556553
self.menubar = tk.Menu()
557554
if platform == 'darwin':

0 commit comments

Comments
 (0)