High-level uninstall — calls ``teardown()``.
(
self,
project_root: Path,
manifest: IntegrationManifest,
*,
force: bool = False,
)
| 756 | return self.setup(project_root, manifest, parsed_options=parsed_options, **opts) |
| 757 | |
| 758 | def uninstall( |
| 759 | self, |
| 760 | project_root: Path, |
| 761 | manifest: IntegrationManifest, |
| 762 | *, |
| 763 | force: bool = False, |
| 764 | ) -> tuple[list[Path], list[Path]]: |
| 765 | """High-level uninstall — calls ``teardown()``.""" |
| 766 | return self.teardown(project_root, manifest, force=force) |
| 767 | |
| 768 | |
| 769 | # --------------------------------------------------------------------------- |