From 132f168c1a1dcc840471f591492256dda53d2bc3 Mon Sep 17 00:00:00 2001
From: PGijsbers
Date: Wed, 28 Aug 2024 21:08:53 +0200
Subject: [PATCH] Remove sections which define default behavior
This is legacy from when they were first all `false` to
incrementally turn on errors.
---
pyproject.toml | 29 -----------------------------
1 file changed, 29 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index a5d4d3d04..ff6479037 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -18,35 +18,6 @@ module=[
]
ignore_missing_imports=true
-[[tool.mypy.overrides]]
-ignore_errors = false
-module = "amlb.utils.*"
-
-
-[[tool.mypy.overrides]]
-ignore_errors = false
-module = "amlb.benchmarks.*"
-
-
-[[tool.mypy.overrides]]
-ignore_errors = false
-module = "amlb.datasets.*"
-
-
-[[tool.mypy.overrides]]
-ignore_errors = false
-module = "amlb.frameworks.*"
-
-
-[[tool.mypy.overrides]]
-ignore_errors = false
-module = "amlb.runners.*"
-
-
-[[tool.mypy.overrides]]
-ignore_errors = false
-module = "amlb.*"
-
[[tool.mypy.overrides]]
module = "amlb.benchmark"
disable_error_code = "union-attr"