From 3cd347dff394ef404796889cde76830422416e0f Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Mon, 6 Oct 2025 14:46:24 -0700 Subject: [PATCH] Update tictactoe.py --- modules/games/tictactoe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"