From d9511cb5da4b4ebd617c89a6e50b9cf0067cd89e Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Wed, 25 Oct 2023 14:32:32 -0300 Subject: [PATCH] Fix import issue --- core/model/collection.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/model/collection.py b/core/model/collection.py index 48ff192b94..47053908fe 100644 --- a/core/model/collection.py +++ b/core/model/collection.py @@ -20,7 +20,6 @@ from sqlalchemy.orm.session import Session from sqlalchemy.sql.expression import and_, or_ -from core.external_search import ExternalSearchIndex from core.integration.goals import Goals from core.model import Base, create, get_one, get_one_or_create from core.model.configuration import ConfigurationSetting, ExternalIntegration @@ -41,8 +40,7 @@ from core.util.string_helpers import base64 if TYPE_CHECKING: - # This is needed during type checking so we have the - # types of related models. + from core.external_search import ExternalSearchIndex from core.model import Credential, CustomList, Timestamp