| 644 | |
| 645 | |
| 646 | class TCmds(TAttr): |
| 647 | def __init__(self): |
| 648 | self.TAttr = TAttr() |
| 649 | self.TAttr2 = TAttr2() |
| 650 | |
| 651 | @command.command("empty") |
| 652 | def empty(self) -> None: |
| 653 | pass |
| 654 | |
| 655 | |
| 656 | async def test_collect_commands(caplog): |
no outgoing calls
searching dependent graphs…