This is an automated email from the ASF dual-hosted git repository.
ferruzzi 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 fd89b31ebc remove docstring D214 and D215 from ignore list (#42802)
fd89b31ebc is described below
commit fd89b31ebc79252fdeb76b1468ea77432c9ad980
Author: Danny Liu <[email protected]>
AuthorDate: Mon Oct 7 10:31:08 2024 -0700
remove docstring D214 and D215 from ignore list (#42802)
Co-authored-by: D. Ferruzzi <[email protected]>
---
pyproject.toml | 2 --
1 file changed, 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 1a7560911c..99fa19fc2d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -306,8 +306,6 @@ ignore = [
"D107", # Unwanted; Docstring in every constructor is unnecessary if the
class has a docstring.
"D203",
"D212", # Conflicts with D213. Both can not be enabled.
- "D214",
- "D215",
"E731", # Do not assign a lambda expression, use a def
"TCH003", # Do not move imports from stdlib to TYPE_CHECKING block
"PT004", # Fixture does not return anything, add leading underscore