aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/utils/typecheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/utils/typecheck.py')
-rw-r--r--mitmproxy/utils/typecheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/utils/typecheck.py b/mitmproxy/utils/typecheck.py
index e8e2121e..5df4ea4b 100644
--- a/mitmproxy/utils/typecheck.py
+++ b/mitmproxy/utils/typecheck.py
@@ -1,7 +1,7 @@
import typing
-def check_type(name: str, value: typing.Any, typeinfo: type) -> None:
+def check_type(name: str, value: typing.Any, typeinfo: typing.Any) -> None:
"""
This function checks if the provided value is an instance of typeinfo
and raises a TypeError otherwise.