From b826866c6030ccd7d375e923924c6c0060a99513 Mon Sep 17 00:00:00 2001 From: beauxq Date: Sun, 7 Apr 2024 08:09:09 -0700 Subject: [PATCH] `Any` should be a way to silence the type checker --- .github/mypy_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/mypy_check.sh b/.github/mypy_check.sh index 0058b1d2ee..48bb406a94 100755 --- a/.github/mypy_check.sh +++ b/.github/mypy_check.sh @@ -2,4 +2,4 @@ if [ "$(basename "$(pwd)")" = ".github" ]; then cd .. fi -xargs mypy --strict --follow-imports=silent --no-warn-unused-ignore --install-types --non-interactive typings < .github/mypy_files.txt +xargs mypy --strict --follow-imports=silent --no-warn-unused-ignore --no-warn-return-any --install-types --non-interactive typings < .github/mypy_files.txt