Skip to content

Commit 1f6dec5

Browse files
committed
Fix pre-commit issues
1 parent 9286f4a commit 1f6dec5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

codeclash/arenas/chess/chess.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,9 @@ def execute_round(self, agents: list[Player]):
224224

225225
# Run matches in parallel
226226
self.logger.info(f"Running {len(pairings)} matches in parallel...")
227-
with ThreadPoolExecutor(max_workers=min(self.game_config.get("sim_concurrency", 20), len(pairings))) as executor:
227+
with ThreadPoolExecutor(
228+
max_workers=min(self.game_config.get("sim_concurrency", 20), len(pairings))
229+
) as executor:
228230
futures = [
229231
executor.submit(
230232
self._run_single_match,

0 commit comments

Comments
 (0)