Create directory if it doesn't exist.
(path: str)
| 12 | |
| 13 | @staticmethod |
| 14 | def ensure_directory(path: str) -> None: |
| 15 | """Create directory if it doesn't exist.""" |
| 16 | os.makedirs(path, exist_ok=True) |
| 17 | |
| 18 | @staticmethod |
| 19 | def save_json(data: Any, filepath: str) -> None: |
no outgoing calls
no test coverage detected