diff --git a/cdp_backend/pipeline/event_gather_pipeline.py b/cdp_backend/pipeline/event_gather_pipeline.py index 8241bf85..12dca809 100644 --- a/cdp_backend/pipeline/event_gather_pipeline.py +++ b/cdp_backend/pipeline/event_gather_pipeline.py @@ -15,6 +15,7 @@ from prefect.tasks.control_flow import case, merge from requests import ConnectionError +from .. import __version__ from ..database import constants as db_constants from ..database import functions as db_functions from ..database import models as db_models @@ -22,7 +23,6 @@ from ..file_store import functions as fs_functions from ..sr_models import GoogleCloudSRModel, WebVTTSRModel from ..utils import constants_utils, file_utils -from .. import __version__ from . import ingestion_models from .ingestion_models import EventIngestionModel, Session from .pipeline_config import EventGatherPipelineConfig diff --git a/cdp_backend/sr_models/google_cloud_sr_model.py b/cdp_backend/sr_models/google_cloud_sr_model.py index 55198466..6156ce9d 100644 --- a/cdp_backend/sr_models/google_cloud_sr_model.py +++ b/cdp_backend/sr_models/google_cloud_sr_model.py @@ -9,8 +9,8 @@ from google.cloud import speech_v1p1beta1 as speech from spacy.lang.en import English -from ..pipeline import transcript_model from .. import __version__ +from ..pipeline import transcript_model from .sr_model import SRModel ############################################################################### diff --git a/cdp_backend/sr_models/webvtt_sr_model.py b/cdp_backend/sr_models/webvtt_sr_model.py index 2bccad79..ac03886f 100644 --- a/cdp_backend/sr_models/webvtt_sr_model.py +++ b/cdp_backend/sr_models/webvtt_sr_model.py @@ -12,8 +12,8 @@ import webvtt from webvtt.structures import Caption -from ..pipeline import transcript_model from .. import __version__ +from ..pipeline import transcript_model from .sr_model import SRModel ###############################################################################