From edef9c65e041f423bcd126e1c4adb335122a636f Mon Sep 17 00:00:00 2001 From: Ben Church Date: Fri, 12 Jan 2024 10:57:10 -0800 Subject: [PATCH] Fix linting issue --- airbyte-ci/connectors/pipelines/pipelines/cli/airbyte_ci.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airbyte-ci/connectors/pipelines/pipelines/cli/airbyte_ci.py b/airbyte-ci/connectors/pipelines/pipelines/cli/airbyte_ci.py index cb5226728929..c7a463a160c9 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/cli/airbyte_ci.py +++ b/airbyte-ci/connectors/pipelines/pipelines/cli/airbyte_ci.py @@ -6,8 +6,9 @@ from __future__ import annotations -# Important: This import and function call must be the first import in this file +# HACK! IMPORTANT! This import and function call must be the first import in this file # This is needed to ensure that the working directory is the root of the airbyte repo +# ruff: noqa: E402 from pipelines.cli.ensure_repo_root import set_working_directory_to_root set_working_directory_to_root()