Skip to content

Commit

Permalink
Lint and format
Browse files Browse the repository at this point in the history
  • Loading branch information
evamaxfield committed Aug 19, 2022
1 parent 5c25bee commit 1e5b807
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cdp_backend/pipeline/event_gather_pipeline.py
Expand Up @@ -15,14 +15,14 @@
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
from ..database.validators import is_secure_uri, resource_exists, try_url
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
Expand Down
2 changes: 1 addition & 1 deletion cdp_backend/sr_models/google_cloud_sr_model.py
Expand Up @@ -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

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion cdp_backend/sr_models/webvtt_sr_model.py
Expand Up @@ -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

###############################################################################
Expand Down

0 comments on commit 1e5b807

Please sign in to comment.