diff options
| author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-12-18 09:33:14 +0100 |
|---|---|---|
| committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-12-18 09:33:14 +0100 |
| commit | 4a3702792cc0270773d321b7b28daa0e3df023c2 (patch) | |
| tree | 19cb31f96315241fd4dc8e121e754f8a0075ee4c | |
| parent | 8d836d251e1ce0b7141155fdc84aed8efc1850a6 (diff) | |
| download | mitmproxy-4a3702792cc0270773d321b7b28daa0e3df023c2.tar.gz mitmproxy-4a3702792cc0270773d321b7b28daa0e3df023c2.tar.bz2 mitmproxy-4a3702792cc0270773d321b7b28daa0e3df023c2.zip | |
ignore contrib type errors
| -rw-r--r-- | mitmproxy/contrib/wsproto/extensions.py | 2 | ||||
| -rw-r--r-- | mitmproxy/contrib/wsproto/frame_protocol.py | 2 | ||||
| -rw-r--r-- | setup.cfg | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/mitmproxy/contrib/wsproto/extensions.py b/mitmproxy/contrib/wsproto/extensions.py index f7cf4fb6..0e0d2018 100644 --- a/mitmproxy/contrib/wsproto/extensions.py +++ b/mitmproxy/contrib/wsproto/extensions.py @@ -1,3 +1,5 @@ +# type: ignore + # -*- coding: utf-8 -*- """ wsproto/extensions diff --git a/mitmproxy/contrib/wsproto/frame_protocol.py b/mitmproxy/contrib/wsproto/frame_protocol.py index b95dceec..30f146c6 100644 --- a/mitmproxy/contrib/wsproto/frame_protocol.py +++ b/mitmproxy/contrib/wsproto/frame_protocol.py @@ -1,3 +1,5 @@ +# type: ignore + # -*- coding: utf-8 -*- """ wsproto/frame_protocol @@ -19,6 +19,9 @@ exclude_lines = pragma: no cover raise NotImplementedError() +[mypy-mitmproxy.contrib.*] +ignore_errors = True + [tool:full_coverage] exclude = mitmproxy/proxy/protocol/base.py |
