(self)
| 118 | |
| 119 | @command.command("flow.set.options") |
| 120 | def flow_set_options(self) -> Sequence[str]: |
| 121 | return [ |
| 122 | "host", |
| 123 | "status_code", |
| 124 | "method", |
| 125 | "path", |
| 126 | "url", |
| 127 | "reason", |
| 128 | ] |
| 129 | |
| 130 | @command.command("flow.set") |
| 131 | @command.argument("attr", type=mitmproxy.types.Choice("flow.set.options")) |
no outgoing calls