From 8252a2fa8fee852a22093bf7fd8755f86c6b0ad5 Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Sun, 1 Oct 2023 13:53:46 -0700 Subject: [PATCH] Correct Battleship Challenge (#5450) * Update abstract_class.py * Update abstract_class.py --- .../verticals/code/6_battleship/artifacts_in/abstract_class.py | 2 +- .../verticals/code/6_battleship/artifacts_out/abstract_class.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_in/abstract_class.py b/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_in/abstract_class.py index 1212c07a..dec3bcb4 100644 --- a/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_in/abstract_class.py +++ b/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_in/abstract_class.py @@ -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. """ diff --git a/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_out/abstract_class.py b/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_out/abstract_class.py index 1212c07a..dec3bcb4 100644 --- a/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_out/abstract_class.py +++ b/benchmark/agbenchmark/challenges/verticals/code/6_battleship/artifacts_out/abstract_class.py @@ -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. """