Skip to content

Commit

Permalink
mypy: Set ignore_missing_imports = False
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Nov 13, 2023
1 parent 4096ff0 commit 81525e3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ console_scripts =
[mypy]
allow_incomplete_defs = False
allow_untyped_defs = False
ignore_missing_imports = True
ignore_missing_imports = False
# <https://github.com/python/mypy/issues/7773>:
no_implicit_optional = True
implicit_reexport = False
Expand All @@ -53,6 +53,10 @@ warn_return_any = True
warn_unreachable = True
plugins = pydantic.mypy

[mypy-pynwb.*]
# <https://github.com/NeurodataWithoutBorders/pynwb/issues/1408>
ignore_missing_imports = True

[pydantic-mypy]
init_forbid_extra = True
warn_untypes_fields = True

0 comments on commit 81525e3

Please sign in to comment.