| 66 | |
| 67 | |
| 68 | class TypeErrAddon: |
| 69 | @command.command("noret") |
| 70 | def noret(self): |
| 71 | pass |
| 72 | |
| 73 | @command.command("invalidret") |
| 74 | def invalidret(self) -> Unsupported: |
| 75 | pass |
| 76 | |
| 77 | @command.command("invalidarg") |
| 78 | def invalidarg(self, u: Unsupported): |
| 79 | pass |
| 80 | |
| 81 | |
| 82 | class TestCommand: |
no outgoing calls
searching dependent graphs…