(self, master: "mitmproxy.tools.console.master.ConsoleMaster")
| 86 | keyctx = "flowlist" |
| 87 | |
| 88 | def __init__(self, master: "mitmproxy.tools.console.master.ConsoleMaster") -> None: |
| 89 | self.master: "mitmproxy.tools.console.master.ConsoleMaster" = master |
| 90 | super().__init__(FlowListWalker(master)) |
| 91 | self.master.options.subscribe( |
| 92 | self.set_flowlist_layout, ["console_flowlist_layout"] |
| 93 | ) |
| 94 | |
| 95 | def keypress(self, size, key): |
| 96 | if key == "m_start": |
nothing calls this directly
no test coverage detected