Correct Battleship Challenge (#5450)

* Update abstract_class.py

* Update abstract_class.py
This commit is contained in:
merwanehamadi
2023-10-01 13:53:46 -07:00
committed by GitHub
parent 3da29eae45
commit 8252a2fa8f
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ class AbstractBattleship(ABC):
pass
@abstractmethod
def create_game(self, game_id: str) -> None:
def create_game(self) -> None:
"""
Create a new game.
"""

View File

@@ -100,7 +100,7 @@ class AbstractBattleship(ABC):
pass
@abstractmethod
def create_game(self, game_id: str) -> None:
def create_game(self) -> None:
"""
Create a new game.
"""