From 59686b03b40733c061eb4f72dc1ad6a493a6769f Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Thu, 25 Jan 2024 11:14:54 +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 4160fd3..5600ea3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,9 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.7" + +[tool.mypy] +strict = true [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"