(self, phase)
| 530 | return "" |
| 531 | |
| 532 | def example_command(self, phase): |
| 533 | if phase not in self.phases: |
| 534 | raise Exception(f"Invalid phase: {phase}") |
| 535 | return () |
| 536 | |
| 537 | def command_descriptions(self, phase): |
| 538 | if phase not in self.phases: |
nothing calls this directly
no outgoing calls
no test coverage detected