From 34f10471d3bec5f056749dd4b403778443325158 Mon Sep 17 00:00:00 2001 From: Thomas Lindner Date: Thu, 29 Dec 2022 17:43:03 +0100 Subject: [PATCH] cleanup --- src/blunderboard/blunderboard.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/blunderboard/blunderboard.py b/src/blunderboard/blunderboard.py index 490f565..ed923da 100644 --- a/src/blunderboard/blunderboard.py +++ b/src/blunderboard/blunderboard.py @@ -4,7 +4,6 @@ from pygame import mixer import random from stockfish import Stockfish import time -import movegenerator settings = { "Debug Log File": "", @@ -53,7 +52,6 @@ class Game: self.engine = Stockfish("/usr/bin/stockfish") self.settings = engine_settings self.engine.update_engine_parameters(self.settings) - self.matrix = BoardReader() self.current_evaluation = ( self.engine.get_evaluation() ) # This is not necessary, now that I think about it.