Skip to content

Commit

Permalink
Add names to some bots, Trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tae898 committed Nov 23, 2023
1 parent d661cbd commit 2daac70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/schnapsen/bots/alphabeta.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_move(self, state: PlayerPerspective, leader_move: Optional[Move]) -> Mov
# The logic of your bot
"""

def __init__(self, name: Optional[str] = "ProbabilityBot") -> None:
def __init__(self, name: Optional[str] = None) -> None:
super().__init__(name)

def get_move(self, perspective: PlayerPerspective, leader_move: Optional[Move]) -> Move:
Expand Down
2 changes: 1 addition & 1 deletion src/schnapsen/bots/minimax.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_move(self, state: PlayerPerspective, leader_move: Optional[Move]) -> Mov
# The logic of your bot
"""

def __init__(self, name: Optional[str] = "ProbabilityBot") -> None:
def __init__(self, name: Optional[str] = None) -> None:
super().__init__(name)

def get_move(self, perspective: PlayerPerspective, leader_move: Optional[Move]) -> Move:
Expand Down

0 comments on commit 2daac70

Please sign in to comment.