(self)
| 75 | |
| 76 | |
| 77 | def save_solutions(self): |
| 78 | filename = self.output_file.replace(".json", "_SOLUTIONS.json") |
| 79 | with open(filename, "w", encoding = "utf-8") as f: |
| 80 | f.write(json.dumps(self.solutions, sort_keys=True, indent=4, separators=(',', ': '))) |
| 81 | |
| 82 | |
| 83 |
nothing calls this directly
no outgoing calls
no test coverage detected