Skip to content

Commit

Permalink
fix: ci lint and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
svidiella committed Feb 29, 2024
1 parent 90796c4 commit 300b9c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions libs/vertexai/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__pycache__
.mypy_cache_test
2 changes: 1 addition & 1 deletion libs/vertexai/tests/integration_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pytest
from _pytest.tmpdir import TempPathFactory
from vertexai.vision_models import Image
from vertexai.vision_models import Image # type: ignore


@pytest.fixture
Expand Down
4 changes: 2 additions & 2 deletions libs/vertexai/tests/integration_tests/test_embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
`gcloud auth login` first).
"""
import pytest
from vertexai.language_models import TextEmbeddingModel
from vertexai.vision_models import MultiModalEmbeddingModel
from vertexai.language_models import TextEmbeddingModel # type: ignore
from vertexai.vision_models import MultiModalEmbeddingModel # type: ignore

from langchain_google_vertexai.embeddings import (
GoogleEmbeddingModelType,
Expand Down

0 comments on commit 300b9c4

Please sign in to comment.