remove useless import

This commit is contained in:
Namonay 2024-04-10 19:48:39 +02:00
parent 8abffa2f71
commit eeea06609b
2 changed files with 1 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class TicTacToe
}
else if (messageData.detail == "game_start")
this.game.started = true;
else
else if (messageData.targetMorpion && messageData.targetCase)
{
this.map[messageData.targetMorpion][messageData.targetCase] = (this.sign == "x") ? 1 : 0;
this.printSign(messageData.targetMorpion, messageData.targetCase, (this.sign == "x") ? "o" : "x");

View File

@ -22,7 +22,6 @@ if TYPE_CHECKING:
from .objects.tictactoe.TicTacToeGame import TicTacToeGame
from .objects.tictactoe.TicTacToeSpectator import TicTacToeSpectator
from .objects.tictactoe.TicTacToePlayer import TicTacToePlayer
game_manager: GameManager = GameManager()