(self)
| 550 | self.no_tasks_given() |
| 551 | |
| 552 | def no_tasks_given(self) -> None: |
| 553 | debug( |
| 554 | "No tasks specified for execution and no default task; printing global help as fallback" # noqa |
| 555 | ) |
| 556 | self.print_help() |
| 557 | raise Exit |
| 558 | |
| 559 | def execute(self) -> None: |
| 560 | """ |
no test coverage detected