You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/04/25 18:36:35 UTC

[airflow] 02/04: Fix pre-commit check

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit b3cc2f5d102214067c40b3c120364918556e7cca
Author: MaksYermak <ma...@gmail.com>
AuthorDate: Tue Apr 19 14:28:44 2022 +0200

    Fix pre-commit check
---
 airflow/providers/google/cloud/links/datastore.py     | 2 +-
 airflow/providers/google/cloud/operators/datastore.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/providers/google/cloud/links/datastore.py b/airflow/providers/google/cloud/links/datastore.py
index c8066f0246..0416896edd 100644
--- a/airflow/providers/google/cloud/links/datastore.py
+++ b/airflow/providers/google/cloud/links/datastore.py
@@ -94,4 +94,4 @@ class CloudDatastoreEntitiesLink(BaseGoogleLink):
             value={
                 "project_id": task_instance.project_id,
             },
-        )
\ No newline at end of file
+        )
diff --git a/airflow/providers/google/cloud/operators/datastore.py b/airflow/providers/google/cloud/operators/datastore.py
index 4f24ba4420..a654e3126c 100644
--- a/airflow/providers/google/cloud/operators/datastore.py
+++ b/airflow/providers/google/cloud/operators/datastore.py
@@ -24,9 +24,9 @@ from airflow.models import BaseOperator
 from airflow.providers.google.cloud.hooks.datastore import DatastoreHook
 from airflow.providers.google.cloud.hooks.gcs import GCSHook
 from airflow.providers.google.cloud.links.datastore import (
+    CloudDatastoreEntitiesLink,
     CloudDatastoreExportEntitiesLink,
     CloudDatastoreImportExportLink,
-    CloudDatastoreEntitiesLink,
 )
 
 if TYPE_CHECKING: