Skip to content

Commit

Permalink
fix typing checks
Browse files Browse the repository at this point in the history
  • Loading branch information
masci committed May 31, 2024
1 parent 5a84d41 commit 8a79bfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion integrations/astra/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ module = [
"pydantic.*",
"haystack.*",
"haystack_integrations.*",
"pytest.*"
"pytest.*",
"openpyxl.*",
]
ignore_missing_imports = true
2 changes: 1 addition & 1 deletion integrations/astra/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def mock_auth(monkeypatch):


@mock.patch("haystack_integrations.document_stores.astra.astra_client.AstraDB")
def test_init_is_lazy(_mock_client, mock_auth):
def test_init_is_lazy(_mock_client, mock_auth): # noqa
_ = AstraDocumentStore()
_mock_client.assert_not_called()

Expand Down

0 comments on commit 8a79bfa

Please sign in to comment.