(self, args)
| 12 | @with_default_category('Query Category') |
| 13 | class QueryCommandSet(CommandSet, ArgumentsManager): |
| 14 | def __init__(self, args) -> None: |
| 15 | super().__init__() |
| 16 | if args is not None: |
| 17 | if args.config: |
| 18 | Settings.load_settings(args.config) |
| 19 | self._filter_options = Settings.filter_options |
| 20 | self._config = ResultSetting() |
| 21 | self._core = DataManager() |
| 22 | self._remove_default_commands() |
| 23 | |
| 24 | def close_connection(self): |
| 25 | if self._core: |
nothing calls this directly
no test coverage detected