Simplify code

This commit is contained in:
Chris Proctor
2022-04-28 15:33:37 -04:00
parent 900c4622ad
commit a057a83ee1
3 changed files with 21 additions and 24 deletions

View File

@@ -1,7 +1,5 @@
class TTTGame:
"""Models a tic-tac-toe game.
"""
"Models a tic-tac-toe game."
def __init__(self, playerX, playerO):
self.board = [None] * 9