Save data as JSON to file.
(data: Any, filepath: str)
| 17 | os.makedirs(path, exist_ok=True) |
| 18 | |
| 19 | @staticmethod |
| 20 | def save_json(data: Any, filepath: str) -> None: |
| 21 | """Save data as JSON to file.""" |
| 22 | with open(filepath, "w", encoding="utf-8") as f: |
| 23 | json.dump(data, f, indent=4, ensure_ascii=False) |
| 24 | |
| 25 | @staticmethod |
no outgoing calls
no test coverage detected