aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/tools/web/master.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-10-25 17:34:30 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-10-25 17:34:30 -0700
commit917c701562794b59b7f4015e9165a7ef7ed50f79 (patch)
tree827ad36b0575b2b9b3127aebaa09d58ade133f5f /mitmproxy/tools/web/master.py
parent145c2892f720300020fdeec8a257c3247c8dff5b (diff)
downloadmitmproxy-917c701562794b59b7f4015e9165a7ef7ed50f79.tar.gz
mitmproxy-917c701562794b59b7f4015e9165a7ef7ed50f79.tar.bz2
mitmproxy-917c701562794b59b7f4015e9165a7ef7ed50f79.zip
make options keyword-only
Diffstat (limited to 'mitmproxy/tools/web/master.py')
-rw-r--r--mitmproxy/tools/web/master.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/tools/web/master.py b/mitmproxy/tools/web/master.py
index 619582f3..9cf17faf 100644
--- a/mitmproxy/tools/web/master.py
+++ b/mitmproxy/tools/web/master.py
@@ -94,6 +94,7 @@ class WebState(state.State):
class Options(options.Options):
def __init__(
self,
+ *, # all args are keyword-only.
intercept: Optional[str] = None,
wdebug: bool = bool,
wport: int = 8081,