MCPcopy Index your code
hub / github.com/github/spec-kit / uninstall

Method uninstall

src/specify_cli/integrations/base.py:758–766  ·  view source on GitHub ↗

High-level uninstall — calls ``teardown()``.

(
        self,
        project_root: Path,
        manifest: IntegrationManifest,
        *,
        force: bool = False,
    )

Source from the content-addressed store, hash-verified

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# ---------------------------------------------------------------------------

Calls 1

teardownMethod · 0.95