@@ -15,7 +15,7 @@ exclude = (?x)(
15
15
)
16
16
disable_error_code =
17
17
# TODO: Not all dependencies are typed. Namely: distutils._modified, wheel.wheelfile, and jaraco.*
18
- import-untyped,
18
+ ; import-untyped,
19
19
# Ignoring attr-defined because setuptools wraps a lot of distutils classes, adding new attributes,
20
20
# w/o updating all the attributes and return types from the base classes for type-checkers to understand
21
21
# Especially with setuptools.dist.command vs distutils.dist.command vs setuptools._distutils.dist.command
@@ -27,13 +27,13 @@ disable_error_code =
27
27
[mypy-pkg_resources.extern.*,setuptools.extern.*]
28
28
ignore_missing_imports = True
29
29
30
- [mypy-pkg_resources.tests.*,setuptools.tests.*]
31
- disable_error_code =
32
- # Tests include creating dynamic modules that won't exists statically before the test is run.
33
- # Let's ignore all "import-not-found", as if an import really wasn't found, then the test would fail.
34
- import-not-found,
35
- # mmany untyped "jaraco" modules
36
- import-untyped,
30
+ ; [mypy-pkg_resources.tests.*,setuptools.tests.*]
31
+ ; disable_error_code =
32
+ ; # Tests include creating dynamic modules that won't exists statically before the test is run.
33
+ ; # Let's ignore all "import-not-found", as if an import really wasn't found, then the test would fail.
34
+ ; import-not-found,
35
+ ; # Many untyped "jaraco" modules
36
+ ; import-untyped,
37
37
38
38
# Mypy issue, this vendored module is already excluded!
39
39
[mypy-setuptools._vendor.packaging._manylinux]
0 commit comments