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

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


The following commit(s) were added to refs/heads/master by this push:
     new 079d7b5  Enable more checks for pydocstyle (#10741)
079d7b5 is described below

commit 079d7b59464921f7fd7d615b6c74195a9c2f831f
Author: Kaxil Naik <[email protected]>
AuthorDate: Sat Sep 5 02:26:09 2020 +0100

    Enable more checks for pydocstyle (#10741)
    
    Enable D106, D207 and D208
    
    D106        Missing docstring in public nested class
    D207        Docstring is under-indented
    D208        Docstring is over-indented
---
 .pre-commit-config.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index c293850..fcc0c8d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -199,7 +199,7 @@ repos:
         name: Run pydocstyle
         args:
           - --convention=pep257
-          - 
--add-ignore=D100,D102,D104,D105,D106,D107,D200,D202,D204,D205,D207,D208,D400,D401
+          - --add-ignore=D100,D102,D104,D105,D107,D200,D202,D204,D205,D400,D401
         exclude: 
^tests/.*\.py$|^scripts/.*\.py$|^dev|^backport_packages|^kubernetes_tests
   - repo: local
     hooks:

Reply via email to