We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20452ae commit 4b56fa6Copy full SHA for 4b56fa6
othello/moderator/jailed_runners.py
@@ -21,8 +21,8 @@ def __init__(self, script_path: str) -> None:
21
self.path = script_path
22
self.strat, self.nargs = import_strategy(script_path)
23
self.logging = getattr(self.strat, "logging", False)
24
- self.board_10x10 = getattr(self.strat, "use_10x10_board", False)
25
- self.moves_10x10 = getattr(self.strat, "use_10x10_moves", False)
+ self.board_10x10 = getattr(self.strat, "uses_10x10_board", False)
+ self.moves_10x10 = getattr(self.strat, "uses_10x10_moves", False)
26
27
def play_wrapper(self, *game_args: Any, pipe_to_parent: mp.Pipe) -> None:
28
try:
0 commit comments