+ fix wrong named
This commit is contained in:
@@ -6,7 +6,7 @@ import random
|
|||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
|
||||||
class gui:
|
class Gui:
|
||||||
|
|
||||||
def __init__(self, theme: str, debug_mode: bool):
|
def __init__(self, theme: str, debug_mode: bool):
|
||||||
self.debug_mode = debug_mode
|
self.debug_mode = debug_mode
|
||||||
|
|||||||
4
run.py
4
run.py
@@ -1,4 +1,4 @@
|
|||||||
from gui.gui import gui
|
from gui.gui import Gui
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
do_debug = False
|
do_debug = False
|
||||||
@@ -7,4 +7,4 @@ if len(sys.argv) > 1:
|
|||||||
if sys.argv[1] == "--debug":
|
if sys.argv[1] == "--debug":
|
||||||
do_debug = True
|
do_debug = True
|
||||||
|
|
||||||
gui(theme='DarkGrey11', debug_mode=do_debug)
|
Gui(theme='DarkGrey11', debug_mode=do_debug)
|
||||||
Reference in New Issue
Block a user