From 0f9915e94b0404aa54a7fcf41868e91b2cb44e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bartoszkiewicz?= Date: Tue, 26 Sep 2023 12:12:16 +0200 Subject: [PATCH] stricter mypy (#4657) GitOrigin-RevId: 44eeb2ac1c063176b0f6426a8cf24b63722b300c --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c595631..bdae864 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,5 +66,7 @@ known_first_party = ["llm_app"] python_version = "3.10" exclude = ['examples'] ignore_missing_imports = true -follow_imports_for_stubs = true check_untyped_defs = true +warn_redundant_casts = true +warn_unused_ignores = true +strict_equality = true