Skip to content

Commit

Permalink
chore: auto-fix lint and format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
octavia-squidington-iii committed Oct 1, 2024
1 parent 94b042e commit 0d2d090
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
from airbyte_protocol.models.airbyte_protocol import ConnectorSpecification # type: ignore
from connector_ops.utils import ConnectorLanguage # type: ignore
from dagger import Container, ExecError, File, ImageLayerCompression, Platform, QueryError
from pydantic import BaseModel, ValidationError

from pipelines import consts
from pipelines.airbyte_ci.connectors.build_image import steps
from pipelines.airbyte_ci.connectors.publish.context import PublishConnectorContext, RolloutMode
Expand All @@ -30,6 +28,7 @@
from pipelines.dagger.actions.system import docker
from pipelines.helpers.pip import is_package_published
from pipelines.models.steps import Step, StepResult, StepStatus
from pydantic import BaseModel, ValidationError


class InvalidSpecOutputError(Exception):
Expand Down Expand Up @@ -562,9 +561,11 @@ async def run_connector_rollback_pipeline(context: PublishConnectorContext, sema
"isReleaseCandidate", True
), "This pipeline can only run for release candidates."
results.append(
await MetadataRollbackReleaseCandidate(context, context.metadata_bucket_name, context.metadata_service_gcs_credentials).run()
await MetadataRollbackReleaseCandidate(
context, context.metadata_bucket_name, context.metadata_service_gcs_credentials
).run()
)

return ConnectorReport(context, results, name="ROLLBACK RESULTS")


Expand Down

0 comments on commit 0d2d090

Please sign in to comment.