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