Skip to content

Commit

Permalink
Fix CI ruff format static checks (apache#43908)
Browse files Browse the repository at this point in the history
* fix ruff format static checks

* fix ruff format static checks
  • Loading branch information
gopidesupavan authored Nov 12, 2024
1 parent 23243b7 commit 28d0a7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions providers/src/airflow/providers/apache/hdfs/sensors/hdfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ def __init__(self, *args, **kwargs):
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)
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
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

Expand Down

0 comments on commit 28d0a7e

Please sign in to comment.