aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/addons/cut.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/addons/cut.py')
-rw-r--r--mitmproxy/addons/cut.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mitmproxy/addons/cut.py b/mitmproxy/addons/cut.py
index f7fbc0c8..7d9a1f36 100644
--- a/mitmproxy/addons/cut.py
+++ b/mitmproxy/addons/cut.py
@@ -24,7 +24,7 @@ def is_addr(v):
def extract(cut: str, f: flow.Flow) -> typing.Union[str, bytes]:
path = cut.split(".")
- current = f # type: typing.Any
+ current: typing.Any = f
for i, spec in enumerate(path):
if spec.startswith("_"):
raise exceptions.CommandError("Can't access internal attribute %s" % spec)
@@ -65,7 +65,7 @@ class Cut:
or "false", "bytes" are preserved, and all other values are
converted to strings.
"""
- ret = [] # type:typing.List[typing.List[typing.Union[str, bytes]]]
+ ret: typing.List[typing.List[typing.Union[str, bytes]]] = []
for f in flows:
ret.append([extract(c, f) for c in cuts])
return ret # type: ignore