Pop a view off the console stack. At the top level, this prompts the user to exit mitmproxy.
(self)
| 358 | |
| 359 | @command.command("console.view.pop") |
| 360 | def view_pop(self) -> None: |
| 361 | """ |
| 362 | Pop a view off the console stack. At the top level, this prompts the |
| 363 | user to exit mitmproxy. |
| 364 | """ |
| 365 | signals.pop_view_state.send() |
| 366 | |
| 367 | @command.command("console.bodyview") |
| 368 | @command.argument("part", type=mitmproxy.types.Choice("console.bodyview.options")) |