Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
Correct Battleship Challenge (Significant-Gravitas#5450)
Browse files Browse the repository at this point in the history
* Update abstract_class.py

* Update abstract_class.py
  • Loading branch information
waynehamadi authored Oct 1, 2023
1 parent 3da29ea commit 8252a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def delete_game(self, game_id: str) -> None:
pass

@abstractmethod
def create_game(self, game_id: str) -> None:
def create_game(self) -> None:
"""
Create a new game.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def delete_game(self, game_id: str) -> None:
pass

@abstractmethod
def create_game(self, game_id: str) -> None:
def create_game(self) -> None:
"""
Create a new game.
"""
Expand Down

0 comments on commit 8252a2f

Please sign in to comment.