From e3b1a2d4f87ddff72245da210a96e979d0388310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Mineo?= Date: Mon, 8 Jan 2024 15:42:45 +0100 Subject: [PATCH] TG-946 Add truthy-bool rule to pyproject.toml (#251) --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 91eb1156..5644eb38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,9 @@ omit = [ source = ["."] [tool.mypy] +enable_error_code = [ + "truthy-bool", + ] ignore_missing_imports = true python_version = "3.11"