This is an automated email from the ASF dual-hosted git repository.
gopidesu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 28d0a7e90a5 Fix CI ruff format static checks (#43908)
28d0a7e90a5 is described below
commit 28d0a7e90a5a56bc20ba582a0af355f53504aa28
Author: GPK <[email protected]>
AuthorDate: Tue Nov 12 06:10:17 2024 +0000
Fix CI ruff format static checks (#43908)
* fix ruff format static checks
* fix ruff format static checks
---
providers/src/airflow/providers/apache/hdfs/sensors/hdfs.py | 4 ++--
providers/src/airflow/providers/google/cloud/hooks/bigquery.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/providers/src/airflow/providers/apache/hdfs/sensors/hdfs.py
b/providers/src/airflow/providers/apache/hdfs/sensors/hdfs.py
index cabf81b7108..53a20204a12 100644
--- a/providers/src/airflow/providers/apache/hdfs/sensors/hdfs.py
+++ b/providers/src/airflow/providers/apache/hdfs/sensors/hdfs.py
@@ -42,11 +42,11 @@ class HdfsSensor(BaseSensorOperator):
raise RuntimeError(_EXCEPTION_MESSAGE)
-class HdfsRegexSensor(HdfsSensor): # noqa: D101 Ignore missing docstring
+class HdfsRegexSensor(HdfsSensor): # noqa: D101 ignore missing docstring
def __init__(self, *args, **kwargs):
raise RuntimeError(_EXCEPTION_MESSAGE)
-class HdfsFolderSensor(HdfsSensor): # noqa: D101 Ignore missing docstring
+class HdfsFolderSensor(HdfsSensor): # noqa: D101 ignore missing docstring
def __init__(self, *args, **kwargs):
raise RuntimeError(_EXCEPTION_MESSAGE)
diff --git a/providers/src/airflow/providers/google/cloud/hooks/bigquery.py
b/providers/src/airflow/providers/google/cloud/hooks/bigquery.py
index 5f8881f4585..b1a7dd2e703 100644
--- a/providers/src/airflow/providers/google/cloud/hooks/bigquery.py
+++ b/providers/src/airflow/providers/google/cloud/hooks/bigquery.py
@@ -56,7 +56,7 @@ from google.cloud.bigquery.table import (
from google.cloud.exceptions import NotFound
from googleapiclient.discovery import Resource, build
from pandas_gbq import read_gbq
-from pandas_gbq.gbq import GbqConnector # noqa: F401 Used in
``airflow.contrib.hooks.bigquery``
+from pandas_gbq.gbq import GbqConnector # noqa: F401 used in
``airflow.contrib.hooks.bigquery``
from requests import Session
from sqlalchemy import create_engine