diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:12:18 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:36:28 +0100 |
commit | 8c375383148f100f03aed52827ac513f145078c2 (patch) | |
tree | dbae3b5d4d603e5e226477f1938119e2acfcfc1f /libmproxy/console/flowlist.py | |
parent | c2bb29f669cd80509f4efe205551a9cf5fc29770 (diff) | |
download | mitmproxy-8c375383148f100f03aed52827ac513f145078c2.tar.gz mitmproxy-8c375383148f100f03aed52827ac513f145078c2.tar.bz2 mitmproxy-8c375383148f100f03aed52827ac513f145078c2.zip |
code formatting: fix whitespace issues
Diffstat (limited to 'libmproxy/console/flowlist.py')
-rw-r--r-- | libmproxy/console/flowlist.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libmproxy/console/flowlist.py b/libmproxy/console/flowlist.py index a8df423f..c2201055 100644 --- a/libmproxy/console/flowlist.py +++ b/libmproxy/console/flowlist.py @@ -43,6 +43,7 @@ footer = [ class EventListBox(urwid.ListBox): + def __init__(self, master): self.master = master urwid.ListBox.__init__(self, master.eventlist) @@ -60,6 +61,7 @@ class EventListBox(urwid.ListBox): class BodyPile(urwid.Pile): + def __init__(self, master): h = urwid.Text("Event log") h = urwid.Padding(h, align="left", width=("relative", 100)) @@ -103,6 +105,7 @@ class BodyPile(urwid.Pile): class ConnectionItem(urwid.WidgetWrap): + def __init__(self, master, state, flow, focus): self.master, self.state, self.flow = master, state, flow self.f = focus @@ -273,6 +276,7 @@ class ConnectionItem(urwid.WidgetWrap): class FlowListWalker(urwid.ListWalker): + def __init__(self, master, state): self.master, self.state = master, state signals.flowlist_change.connect(self.sig_flowlist_change) @@ -301,6 +305,7 @@ class FlowListWalker(urwid.ListWalker): class FlowListBox(urwid.ListBox): + def __init__(self, master): self.master = master urwid.ListBox.__init__( |