| 619 | |
| 620 | |
| 621 | class TDec: |
| 622 | @command.command("cmd1") |
| 623 | def cmd1(self, foo: str) -> str: |
| 624 | """cmd1 help""" |
| 625 | return "ret " + foo |
| 626 | |
| 627 | @command.command("cmd2") |
| 628 | def cmd2(self, foo: str) -> str: |
| 629 | return 99 |
| 630 | |
| 631 | @command.command("empty") |
| 632 | def empty(self) -> None: |
| 633 | pass |
| 634 | |
| 635 | |
| 636 | class TAttr: |
no outgoing calls
searching dependent graphs…