From 58d4999ce66412679e02ac3d114c2195aba7845a Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Thu, 25 Jan 2024 11:14:21 +0100 Subject: [PATCH] Run mypy in strict mode --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index cf285a7..f71c8c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,9 @@ line-length = 88 [tool.ruff.format] quote-style = "single" + +[tool.mypy] +strict = true [build-system] build-backend = "poetry.core.masonry.api" requires = ["poetry-core"]