[030aeb]: / dosma / app.py

Download this file

13 lines (8 with data), 239 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
import matplotlib
matplotlib.use("TkAgg")
from dosma.gui.ims import DosmaViewer # noqa: E402
from dosma.utils.logger import setup_logger # noqa: E402
# Initialize logger for the GUI.
setup_logger()
app = DosmaViewer()
app.mainloop()