From bf0a63f48726931159b7d3eec1209f1ed372d511 Mon Sep 17 00:00:00 2001 From: Lukas Plank Date: Wed, 5 Feb 2025 19:15:23 +0100 Subject: [PATCH] chore(settings): add mypy section in pyproject.toml The setting is non-strict for now. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cf48937..a301ec1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,9 +52,10 @@ markers = [ ] [tool.mypy] -strict = true +# strict = true warn_return_any = true warn_unused_configs = true +ignore_missing_imports = true [[tool.mypy.overrides]] module = ["pandas.*"]