Method
remove
(self, project_root: Path, component: ComponentRef)
Source from the content-addressed store, hash-verified
| 117 | self.installed.add(self._key(component)) |
| 118 | |
| 119 | def remove(self, project_root: Path, component: ComponentRef) -> None: |
| 120 | self.remove_calls.append(self._key(component)) |
| 121 | self.installed.discard(self._key(component)) |
| 122 | |
| 123 | def refresh(self, project_root: Path, component: ComponentRef) -> None: |
| 124 | self.refresh_calls.append(self._key(component)) |
Callers
nothing calls this directly
Tested by
no test coverage detected