(self)
| 9385 | raise |
| 9386 | |
| 9387 | def setup(self) -> None: |
| 9388 | self.load() |
| 9389 | |
| 9390 | GefHelpCommand() |
| 9391 | GefConfigCommand() |
| 9392 | GefSaveCommand() |
| 9393 | GefMissingCommand() |
| 9394 | GefSetCommand() |
| 9395 | GefRunCommand() |
| 9396 | GefInstallExtraScriptCommand() |
| 9397 | |
| 9398 | # restore the settings from config file if any |
| 9399 | GefRestoreCommand() |
| 9400 | return |
| 9401 | |
| 9402 | def load_extra_plugins(self) -> int: |
| 9403 | def load_plugin(fpath: pathlib.Path) -> bool: |
nothing calls this directly
no test coverage detected