(self, svg_path: Path)
| 301 | """ |
| 302 | |
| 303 | def __init__(self, svg_path: Path): |
| 304 | self._symbols: dict[str, Symbol] = {} |
| 305 | self._load_bundle(svg_path) |
| 306 | |
| 307 | # ── loading ─────────────────────────────────────────────────────────────── |
| 308 |
nothing calls this directly
no test coverage detected