Skip to content

Commit 0a5456a

Browse files
committed
only use ignore_missing_imports for specific libraries
1 parent e218f42 commit 0a5456a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

mypy.ini

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
[mypy]
2-
ignore_missing_imports = True
32
strict = True
3+
4+
[mypy-marshmallow_enum.*]
5+
ignore_missing_imports = True
6+
7+
[mypy-marshmallow_union.*]
8+
ignore_missing_imports = True
9+
10+
[mypy-typing_inspect.*]
11+
ignore_missing_imports = True

0 commit comments

Comments
 (0)