From 62be42e48cee934ce7f658d29de96d185cc8817d Mon Sep 17 00:00:00 2001 From: Shunichiro Nomura Date: Sat, 3 Feb 2024 20:36:04 +0900 Subject: [PATCH] Consolidate mypy overrides in pyproject.toml --- pyproject.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d89b4dc8..0d4cb2fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,11 +43,7 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [[tool.mypy.overrides]] -module = "cpuinfo" -ignore_missing_imports = true - -[[tool.mypy.overrides]] -module = "matplotlib.*" +module = ["cpuinfo", "matplotlib.*"] ignore_missing_imports = true [tool.ruff]