summaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-14 15:08:54 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-14 15:08:54 +0200
commit53eea87fe65c5c4f063664c424d4b49176a27984 (patch)
treeba07b7f17923b86617f4b2bc483beacc8baf365e /app.py
parent3dd13c9ed2fc57c525ddf0dd5c7d130229087a16 (diff)
Making it possible to ask hints.
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):