From 3fb466eb14956adf84646c2b5b4c5f596f0edaca Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Thu, 25 Jan 2024 11:14:37 +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 498f21b..3212b77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,9 @@ line-length = 88 [tool.ruff.format] quote-style = "single" + +[tool.mypy] +strict = true [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"