(self, round_dir, pairings)
| 121 | return arena |
| 122 | |
| 123 | def _write_pairings(self, round_dir, pairings): |
| 124 | pairings_file = round_dir / "pairings.json" |
| 125 | pairings_file.write_text(json.dumps(pairings, indent=2)) |
| 126 | |
| 127 | def _write_pgn(self, file_path, white: str, black: str, result: str): |
| 128 | content = ( |
no outgoing calls
no test coverage detected