Remove ``.specify/integration.json`` if it exists.
(project_root: Path)
| 117 | |
| 118 | |
| 119 | def _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 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected