Merge "hacking: Ignore H405"

This commit is contained in:
Zuul 2021-11-30 15:07:26 +00:00 committed by Gerrit Code Review
commit 74b037fabf
1 changed files with 2 additions and 1 deletions

View File

@ -347,7 +347,8 @@ import_exceptions = tempest.services
# E123 skipped because it is ignored by default in the default pep8
# E129 skipped because it is too limiting when combined with other rules
# W504 skipped because it is overeager and unnecessary
ignore = E125,E123,E129,W504
# H405 skipped because it arbitrarily forces doctring "title" lines
ignore = E125,E123,E129,W504,H405
show-source = True
exclude = .git,.venv,.tox,dist,doc,*egg,build
enable-extensions = H106,H203,H904