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