Check if a step is installed.
(self, step_id: str)
| 725 | return dict(self.data["steps"]) |
| 726 | |
| 727 | def is_installed(self, step_id: str) -> bool: |
| 728 | """Check if a step is installed.""" |
| 729 | return step_id in self.data["steps"] |
| 730 | |
| 731 | |
| 732 | # --------------------------------------------------------------------------- |
no outgoing calls