From e6716326bde82e45c026cb041fb04810b00957f0 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Mon, 9 Oct 2023 17:35:02 +0200 Subject: [PATCH] Make mypy ignore copied util modules string & logging --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d9f5c44..6e24799 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ warn_redundant_casts = true warn_unreachable = true warn_unused_configs = true warn_unused_ignores = true -exclude = "^build/|^docs/" +exclude = "^build/|^docs/|^tianshou/utils/(string|logging).py" [tool.doc8] max-line-length = 1000