From 01d0983c294301cbc4cfee0ff17ed57c1d7e9efe Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 17 May 2025 16:57:17 -0700 Subject: [PATCH] fix config.yml --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 59616f1990..4c89d4df06 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -143,9 +143,9 @@ jobs: command: | cd litellm python -m pip install types-requests types-setuptools types-redis types-PyYAML - if ! python -m mypy . --ignore-missing-imports; then - echo "mypy detected errors" - exit 1 + if ! python -m mypy . \ + --config-file mypy.ini \ + --ignore-missing-imports; then fi cd ..