Return the source checkout root used for editable installs.
()
| 28 | |
| 29 | |
| 30 | def _repo_root() -> Path: |
| 31 | """Return the source checkout root used for editable installs.""" |
| 32 | return Path(__file__).parent.parent.parent |
| 33 | |
| 34 | |
| 35 | def _locate_bundled_extension(extension_id: str) -> Path | None: |
no outgoing calls
no test coverage detected