(self)
| 155 | self._global_args_parser = None |
| 156 | |
| 157 | def _retrieve_global_args_parser(self): |
| 158 | if self._global_args_parser is None: |
| 159 | if self._global_cmd_driver is not None: |
| 160 | command_table = self._global_cmd_driver.subcommand_table |
| 161 | self._global_args_parser = ( |
| 162 | self._global_cmd_driver.create_parser(command_table) |
| 163 | ) |
| 164 | return self._global_args_parser |
| 165 | |
| 166 | def on_building_command_table( |
| 167 | self, command_table, event_name, command_object, session, **kwargs |
no test coverage detected