From 44f27cfb255fe0acc7cfc562961e373b132551db Mon Sep 17 00:00:00 2001 From: Philipp Temminghoff Date: Tue, 29 Oct 2024 08:49:38 +0100 Subject: [PATCH] build: stricter mypy --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4d18cd0..9979c33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ exclude_lines = [ [tool.mypy] python_version = "3.12" # python_executable = ".venv/env/virtual/jinjarope/Scripts/python.exe" -disable_error_code = ["assignment", "misc", "import", "has-type"] +disable_error_code = ["misc", "import"] pretty = true check_untyped_defs = true exclude = ['venv/', '.venv/', 'tests/']