From b07c29affe5e40a3a902577043cf2023dc24e44f Mon Sep 17 00:00:00 2001 From: Eric Hare Date: Mon, 11 Mar 2024 11:17:24 -0700 Subject: [PATCH] Fix sorting of imports for ruff linting --- .../document_stores/astra/astra_client.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integrations/astra/src/haystack_integrations/document_stores/astra/astra_client.py b/integrations/astra/src/haystack_integrations/document_stores/astra/astra_client.py index 4272c69d1..2549719d6 100644 --- a/integrations/astra/src/haystack_integrations/document_stores/astra/astra_client.py +++ b/integrations/astra/src/haystack_integrations/document_stores/astra/astra_client.py @@ -5,12 +5,11 @@ from astrapy.api import APIRequestError from astrapy.db import AstraDB -from pydantic.dataclasses import dataclass # For version tracking from haystack import __name__ as integration_name from haystack.version import __version__ as integration_version - +from pydantic.dataclasses import dataclass logger = logging.getLogger(__name__)