Check if a workflow is installed.
(self, workflow_id: str)
| 117 | return dict(self.data["workflows"]) |
| 118 | |
| 119 | def is_installed(self, workflow_id: str) -> bool: |
| 120 | """Check if a workflow is installed.""" |
| 121 | return workflow_id in self.data["workflows"] |
| 122 | |
| 123 | |
| 124 | # --------------------------------------------------------------------------- |
no outgoing calls