(self, command_name, response, parsed_globals)
| 1108 | return response |
| 1109 | |
| 1110 | def _display_response(self, command_name, response, parsed_globals): |
| 1111 | output = parsed_globals.output |
| 1112 | if output is None: |
| 1113 | output = self._session.get_config_variable('output') |
| 1114 | |
| 1115 | formatter = get_formatter(output, parsed_globals) |
| 1116 | with self._output_stream_factory.get_output_stream() as stream: |
| 1117 | formatter(command_name, response, stream) |
no test coverage detected