(self, *args, **kwargs)
| 70 | """An class to show how to use a mixin.""" |
| 71 | |
| 72 | def __init__(self, *args, **kwargs) -> None: |
| 73 | # gotta have this or neither the mixin or cmd2 will initialize |
| 74 | super().__init__(*args, **kwargs) |
| 75 | |
| 76 | @empty_decorator |
| 77 | def do_something(self, _arg) -> None: |