Files
Nassi-Shneiderman-Diagramm-…/run.py
2020-12-26 18:31:45 +01:00

11 lines
200 B
Python
Executable File

#!/usr/bin/env python
from gui.gui import Gui
import sys
do_debug = False
if len(sys.argv) > 1:
if sys.argv[1] == "--debug":
do_debug = True
Gui(theme='DarkGrey11', debug_mode=do_debug)