From 9d3862ccd709728cf923c9eaf8f4e706492fd54e Mon Sep 17 00:00:00 2001 From: oleting Date: Sat, 26 Dec 2020 16:10:56 +0100 Subject: [PATCH] + fix wrong named --- gui/gui.py | 2 +- run.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/gui.py b/gui/gui.py index 3879c86..8be9370 100644 --- a/gui/gui.py +++ b/gui/gui.py @@ -6,7 +6,7 @@ import random import logging -class gui: +class Gui: def __init__(self, theme: str, debug_mode: bool): self.debug_mode = debug_mode diff --git a/run.py b/run.py index 672f538..a064d90 100644 --- a/run.py +++ b/run.py @@ -1,4 +1,4 @@ -from gui.gui import gui +from gui.gui import Gui import sys do_debug = False @@ -7,4 +7,4 @@ if len(sys.argv) > 1: if sys.argv[1] == "--debug": do_debug = True -gui(theme='DarkGrey11', debug_mode=do_debug) \ No newline at end of file +Gui(theme='DarkGrey11', debug_mode=do_debug) \ No newline at end of file