(self, phase)
| 395 | return "" |
| 396 | |
| 397 | def example_command(self, phase): |
| 398 | if phase not in self.phases: |
| 399 | raise Exception(f"Invalid phase: {phase}") |
| 400 | return () |
| 401 | |
| 402 | def command_descriptions(self, phase): |
| 403 | if phase not in self.phases: |
nothing calls this directly
no outgoing calls
no test coverage detected