DEV: overwrite
(self, cli: bool = True, debug: bool = False)
| 3615 | commands_complete: Dict[str, Callable[..., List[str]]] = {} |
| 3616 | |
| 3617 | def __init__(self, cli: bool = True, debug: bool = False) -> None: |
| 3618 | """ |
| 3619 | DEV: overwrite |
| 3620 | """ |
| 3621 | if cli: |
| 3622 | self._depcheck() |
| 3623 | self.loop(debug=debug) |
| 3624 | |
| 3625 | @staticmethod |
| 3626 | def _inspectkwargs(func: DecoratorCallable) -> None: |