(self, response: Response, opts: argparse.Namespace)
| 22 | parser.add_argument("--headers", help=argparse.SUPPRESS) |
| 23 | |
| 24 | def _print_response(self, response: Response, opts: argparse.Namespace) -> None: |
| 25 | if not isinstance(response, TextResponse): |
| 26 | logger.error("Cannot view a non-text response.") |
| 27 | return |
| 28 | open_in_browser(response) |
nothing calls this directly
no test coverage detected