remove fallback for tkinter not being present

main
parent b4434e6467
commit 6a0e78b409
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -4,18 +4,8 @@
from collections import OrderedDict
import math
import fitz
try:
import tkinter
import tkinter.filedialog
except ImportError:
# dummy classes so that this also loads without tkinter
class tkinter:
class Frame:
pass
class Menubutton:
pass
class LabelFrame:
pass
import tkinter
import tkinter.filedialog
import sys
import argparse
import os.path

Loading…
Cancel
Save