From a480ac77f5f1282c9c2c5c8f8a35c72bfa401d1f Mon Sep 17 00:00:00 2001 From: Shain Lafazan Date: Wed, 8 May 2024 16:39:35 -0400 Subject: [PATCH] Remove outdated comment --- library/src/tic_tac_toe/logic/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/library/src/tic_tac_toe/logic/models.py b/library/src/tic_tac_toe/logic/models.py index 7dc55f1..e1cd44d 100644 --- a/library/src/tic_tac_toe/logic/models.py +++ b/library/src/tic_tac_toe/logic/models.py @@ -36,7 +36,6 @@ def other(self) -> Mark: class Grid: cells: str = " " * 9 - # TODO - validation def __post_init__(self) -> None: validate_grid(self)