1
0
Fork 0
forked from josch/plakativ

add dummy tkinter class

This commit is contained in:
Johannes 'josch' Schauer 2019-07-01 01:54:31 +02:00
parent 988e844c9e
commit 1e0bde7027
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -4,8 +4,18 @@
from collections import OrderedDict
import math
import fitz
import tkinter
import tkinter.filedialog
try:
import tkinter
import tkinter.filedialog
except ModuleNotFoundError:
# dummy classes so that this also loads without tkinter
class tkinter:
class Frame:
pass
class Menubutton:
pass
class LabelFrame:
pass
import sys
import argparse
import os.path
@ -1058,7 +1068,7 @@ def main():
gui()
exit(0)
compute_layout(args.input, args.output)
compute_layout(args.input, args.output, mode="size", size=(297, 420))
if __name__ == "__main__":
main()