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

Function _remove_integration_json

src/specify_cli/integrations/_helpers.py:119–123  ·  view source on GitHub ↗

Remove ``.specify/integration.json`` if it exists.

(project_root: Path)

Source from the content-addressed store, hash-verified

117
118
119def _remove_integration_json(project_root: Path) -> None:
120 """Remove ``.specify/integration.json`` if it exists."""
121 path = project_root / INTEGRATION_JSON
122 if path.exists():
123 path.unlink()
124
125
126# ---------------------------------------------------------------------------

Callers 3

integration_installFunction · 0.85
integration_uninstallFunction · 0.85
integration_switchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected