(self)
| 552 | self.error('--continue requires --output to be specified') |
| 553 | |
| 554 | def _process_format_options(self): |
| 555 | format_options = self.args.format_options or [] |
| 556 | parsed_options = PARSED_DEFAULT_FORMAT_OPTIONS |
| 557 | for options_group in format_options: |
| 558 | parsed_options = parse_format_options(options_group, defaults=parsed_options) |
| 559 | self.args.format_options = parsed_options |
| 560 | |
| 561 | def print_manual(self): |
| 562 | from httpie.output.ui import man_pages |
no test coverage detected