Skip to content

Commit 20a6526

Browse files
committed
Final QA: remove docstring
1 parent 1e205c1 commit 20a6526

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

python-tic-tac-toe-game-tkinter/source_code_final/tic_tac_toe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def __init__(self, players=DEFAULT_PLAYERS, board_size=BOARD_SIZE):
3636
self._setup_board()
3737

3838
def _setup_board(self):
39-
"""Set the board to its initial state."""
4039
self._current_moves = [
4140
[Move(row, col) for col in range(self.board_size)]
4241
for row in range(self.board_size)

python-tic-tac-toe-game-tkinter/source_code_step_2/tic_tac_toe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def __init__(self, players=DEFAULT_PLAYERS, board_size=BOARD_SIZE):
3636
self._setup_board()
3737

3838
def _setup_board(self):
39-
"""Set the board to its initial state."""
4039
self._current_moves = [
4140
[Move(row, col) for col in range(self.board_size)]
4241
for row in range(self.board_size)

python-tic-tac-toe-game-tkinter/source_code_step_3/tic_tac_toe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def __init__(self, players=DEFAULT_PLAYERS, board_size=BOARD_SIZE):
3636
self._setup_board()
3737

3838
def _setup_board(self):
39-
"""Set the board to its initial state."""
4039
self._current_moves = [
4140
[Move(row, col) for col in range(self.board_size)]
4241
for row in range(self.board_size)

python-tic-tac-toe-game-tkinter/source_code_step_4/tic_tac_toe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def __init__(self, players=DEFAULT_PLAYERS, board_size=BOARD_SIZE):
3636
self._setup_board()
3737

3838
def _setup_board(self):
39-
"""Set the board to its initial state."""
4039
self._current_moves = [
4140
[Move(row, col) for col in range(self.board_size)]
4241
for row in range(self.board_size)

python-tic-tac-toe-game-tkinter/source_code_step_5/tic_tac_toe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def __init__(self, players=DEFAULT_PLAYERS, board_size=BOARD_SIZE):
3636
self._setup_board()
3737

3838
def _setup_board(self):
39-
"""Set the board to its initial state."""
4039
self._current_moves = [
4140
[Move(row, col) for col in range(self.board_size)]
4241
for row in range(self.board_size)

0 commit comments

Comments
 (0)