From ae9b590072235552dfc17fdddaef4358d91a29a6 Mon Sep 17 00:00:00 2001 From: austin Date: Sat, 28 Dec 2024 18:03:53 -0500 Subject: [PATCH] mypy config update --- mypy.ini | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/mypy.ini b/mypy.ini index a9337fb..c6f275a 100644 --- a/mypy.ini +++ b/mypy.ini @@ -14,14 +14,12 @@ plugins = numpy.typing.mypy_plugin disallow_incomplete_defs = True disallow_untyped_decorators = False disallow_any_unimported = False +ignore_missing_imports = True # Per-module options: -[mypy-mycode.foo.*] -disallow_untyped_defs = True +; [mypy-mycode.foo.*] +; disallow_untyped_defs = True -[mypy-mycode.bar] -warn_return_any = False - -[mypy-somelibrary] -ignore_missing_imports = True \ No newline at end of file +; [mypy-somelibrary] +; ignore_missing_imports = True \ No newline at end of file