aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/command.py
diff options
context:
space:
mode:
authorHenrique <typoon@gmail.com>2019-11-12 22:50:33 -0500
committerHenrique <typoon@gmail.com>2019-11-12 22:50:33 -0500
commiteee4b24e98b76b1eb33804d21264c5117a5c913c (patch)
tree6c0cb094c0757a72616613352183f23cf6777430 /mitmproxy/command.py
parent578eb7239cf073ee9dd526542ca19ff6c23ae61c (diff)
downloadmitmproxy-eee4b24e98b76b1eb33804d21264c5117a5c913c.tar.gz
mitmproxy-eee4b24e98b76b1eb33804d21264c5117a5c913c.tar.bz2
mitmproxy-eee4b24e98b76b1eb33804d21264c5117a5c913c.zip
Fixing issues reported by the linter
Diffstat (limited to 'mitmproxy/command.py')
-rw-r--r--mitmproxy/command.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/command.py b/mitmproxy/command.py
index 4fbae533..3da3a298 100644
--- a/mitmproxy/command.py
+++ b/mitmproxy/command.py
@@ -13,6 +13,7 @@ from mitmproxy import exceptions
from mitmproxy import lexer
import mitmproxy.types
+
def verify_arg_signature(f: typing.Callable, args: list, kwargs: dict) -> None:
sig = inspect.signature(f)
try: