1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-05-30 07:09:39 +03:00

Need tkinter always, not just TYPE_CHECKING

This commit is contained in:
Athanasius 2021-04-07 16:55:15 +01:00
parent 42cd2c501e
commit 1073a15fa2

View File

@ -2,16 +2,13 @@
# -*- coding: utf-8 -*-
import pathlib
import tkinter as tk
from sys import platform
from typing import TYPE_CHECKING, Optional, Tuple, Union
from config import config
from EDMCLogging import get_main_logger
# isort: off
if TYPE_CHECKING:
import tkinter as tk
# isort: on
logger = get_main_logger()