aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple/custom_contentview.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2017-04-29 23:19:11 +1200
committerGitHub <noreply@github.com>2017-04-29 23:19:11 +1200
commit83f87607036aad642515efe4fcdb0de9a8e31ed6 (patch)
treef72a30816e62e2c0492f70a46939afe3f222e152 /examples/simple/custom_contentview.py
parent25fb0cc019bfe2c86a8472831247fdee45703d53 (diff)
parent789fbd00d24ee591de592ae5d8143fe4278298d7 (diff)
downloadmitmproxy-83f87607036aad642515efe4fcdb0de9a8e31ed6.tar.gz
mitmproxy-83f87607036aad642515efe4fcdb0de9a8e31ed6.tar.bz2
mitmproxy-83f87607036aad642515efe4fcdb0de9a8e31ed6.zip
Merge pull request #2221 from iharsh234/mypy-master-example/simple
Extend mypy example/simple (#2194)
Diffstat (limited to 'examples/simple/custom_contentview.py')
-rw-r--r--examples/simple/custom_contentview.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/simple/custom_contentview.py b/examples/simple/custom_contentview.py
index 34fa5541..289e1efe 100644
--- a/examples/simple/custom_contentview.py
+++ b/examples/simple/custom_contentview.py
@@ -3,6 +3,7 @@ This example shows how one can add a custom contentview to mitmproxy.
The content view API is explained in the mitmproxy.contentviews module.
"""
from mitmproxy import contentviews
+from typing import Tuple, Iterable, AnyStr, List
class ViewSwapCase(contentviews.View):
@@ -13,7 +14,7 @@ class ViewSwapCase(contentviews.View):
prompt = ("swap case text", "z")
content_types = ["text/plain"]
- def __call__(self, data: bytes, **metadata):
+ def __call__(self, data: bytes, **metadata) -> Tuple[str, Iterable[List[Tuple[str, AnyStr]]]]:
return "case-swapped text", contentviews.format_text(data.swapcase())