diff --git a/modules/games/tictactoe.py b/modules/games/tictactoe.py index 32f3d33..164508e 100644 --- a/modules/games/tictactoe.py +++ b/modules/games/tictactoe.py @@ -45,8 +45,7 @@ class TicTacToe: row += "|" board_str += row if i < 2: - #board_str += "\n-+-+-\n" - board_str += "\n" + board_str += "\n-----\n" return board_str + "\n"