aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/tools/console/flowlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/tools/console/flowlist.py')
-rw-r--r--mitmproxy/tools/console/flowlist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/flowlist.py b/mitmproxy/tools/console/flowlist.py
index 852c5163..78892fe1 100644
--- a/mitmproxy/tools/console/flowlist.py
+++ b/mitmproxy/tools/console/flowlist.py
@@ -74,7 +74,7 @@ class FlowListBox(urwid.ListBox, layoutwidget.LayoutWidget):
def __init__(
self, master: "mitmproxy.tools.console.master.ConsoleMaster"
) -> None:
- self.master = master # type: "mitmproxy.tools.console.master.ConsoleMaster"
+ self.master: "mitmproxy.tools.console.master.ConsoleMaster" = master
super().__init__(FlowListWalker(master))
def keypress(self, size, key):