Ensure that a directory exists, creating it if necessary Args: path: Directory path to create
(path: str)
| 131 | |
| 132 | |
| 133 | def ensure_directory_exists(path: str) -> None: |
| 134 | """ |
| 135 | Ensure that a directory exists, creating it if necessary |
| 136 | |
| 137 | Args: |
| 138 | path: Directory path to create |
| 139 | """ |
| 140 | os.makedirs(path, exist_ok=True) |
| 141 | |
| 142 | def load_dimension_info(json_dir, dimension): |
| 143 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected