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
The following commit(s) were added to refs/heads/main by this push:
new 1ab082b1ed Add extra modules to exclude D401 check (#37251)
1ab082b1ed is described below
commit 1ab082b1ed18e47481d671b0d014e37d3c43d0b2
Author: Andrey Anshin <[email protected]>
AuthorDate: Thu Feb 8 20:31:00 2024 +0400
Add extra modules to exclude D401 check (#37251)
---
pyproject.toml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pyproject.toml b/pyproject.toml
index 0697184944..0c4769657e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1365,6 +1365,7 @@ combine-as-imports = true
"airflow/www/auth.py" = ["D401"]
"airflow/www/blueprints.py" = ["D401"]
"airflow/www/views.py" = ["D401"]
+"airflow/utils/file.py" = ["D401"]
"airflow/providers/airbyte/hooks/airbyte.py" = ["D401"]
"airflow/providers/airbyte/operators/airbyte.py" = ["D401"]
"airflow/providers/airbyte/sensors/airbyte.py" = ["D401"]
@@ -1575,6 +1576,7 @@ combine-as-imports = true
"airflow/providers/pinecone/hooks/pinecone.py" = ["D401"]
"airflow/providers/postgres/hooks/postgres.py" = ["D401"]
"airflow/providers/presto/hooks/presto.py" = ["D401"]
+"airflow/providers/qdrant/hooks/qdrant.py" = ["D401"]
"airflow/providers/redis/hooks/redis.py" = ["D401"]
"airflow/providers/salesforce/hooks/salesforce.py" = ["D401"]
"airflow/providers/salesforce/operators/bulk.py" = ["D401"]