(from_dir: Path, to_path: Path)
| 103 | |
| 104 | |
| 105 | def rel_link(from_dir: Path, to_path: Path) -> str: |
| 106 | return Path.relative_to(to_path.resolve(), ROOT.resolve()).as_posix() if False else _rel(from_dir, to_path) |
| 107 | |
| 108 | |
| 109 | def _rel(from_dir: Path, to_path: Path) -> str: |