summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.py b/app.py
index be711b0..977e6c3 100644
--- a/app.py
+++ b/app.py
@@ -8,7 +8,7 @@ class App:
""" App - Luokka pääohjelmalle"""
def __init__(self):
self.board = Board()
- self.ui = Tui()
+ self.ui = Tui("just testing bot here")
self.game = Game(self.board,self.ui)
def run(self):