(self, phase)
| 472 | return "" |
| 473 | |
| 474 | def example_command(self, phase): |
| 475 | if phase not in self.phases: |
| 476 | raise Exception(f"Invalid phase: {phase}") |
| 477 | return () |
| 478 | |
| 479 | def command_descriptions(self, phase): |
| 480 | if phase not in self.phases: |
nothing calls this directly
no outgoing calls
no test coverage detected