Create directories if they don't exist.
(filepath: Path)
| 46 | |
| 47 | |
| 48 | def maybe_make_dirs(filepath: Path) -> None: |
| 49 | """ |
| 50 | Create directories if they don't exist. |
| 51 | """ |
| 52 | filepath.parent.mkdir(parents=True, exist_ok=True) |
| 53 | |
| 54 | |
| 55 | MARIMO_DIR_NAME = "__marimo__" |
no test coverage detected
searching dependent graphs…