xref: /linux/tools/testing/kunit/mypy.ini (revision 2960d4c8e77aba365df80b69e72f88b29011b111)
1[mypy]
2strict = True
3
4# E.g. we can't write subprocess.Popen[str] until Python 3.9+.
5# But kunit.py tries to support Python 3.7+, so let's disable it.
6disable_error_code = type-arg
7