(self, project_root: Path, component: ComponentRef)
| 106 | return (component.kind, component.id) |
| 107 | |
| 108 | def is_installed(self, project_root: Path, component: ComponentRef) -> bool: |
| 109 | return self._key(component) in self.installed |
| 110 | |
| 111 | def install(self, project_root: Path, component: ComponentRef) -> None: |
| 112 | from specify_cli.bundler import BundlerError |