Skip to content

Commit 3d46094

Browse files
ci(mypy.ini): ignore missing imports
1 parent c3e3ca9 commit 3d46094

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip
2727
python -m pip install -r .circleci/requirements.txt
2828
pip install "pytest==7.3.1"
29+
pip install types-yaml
2930
pip install "pytest-asyncio==0.21.1"
3031
pip install mypy
3132
pip install "google-generativeai==0.3.2"

mypy.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[mypy]
22
warn_return_any = False
3-
ignore_missing_imports = False
3+
ignore_missing_imports = True
44

55
[mypy-google.*]
66
ignore_missing_imports = True

0 commit comments

Comments
 (0)