Cleanup pep8 H401 docstring warnings
This is a minor code cleanup task. No longer suppress the following flake8 warning H401 docstring should not start with a space This change only affects docstrings and therefore has no runtime impact. Story: 2004515 Task: 28527 Change-Id: I8b1e22ebdfd9f0400535930de4829635364e2299 Signed-off-by: Al Bailey <Al.Bailey@windriver.com>
This commit is contained in:
parent
397e40a89f
commit
29f3a1caaa
@ -68,7 +68,6 @@ verbosity=2
|
||||
# - hacking codes -
|
||||
# H104: File contains nothing but comments
|
||||
# H306: imports not in alphabetical order
|
||||
# H401: docstring should not start with a space
|
||||
# H404: multi line docstring should start without a leading new line
|
||||
# H405: multi line docstring summary not separated with an empty line
|
||||
# H501: Do not use self.__dict__ for string formatting
|
||||
@ -77,7 +76,7 @@ verbosity=2
|
||||
# - bugbear codes -
|
||||
# B007 Loop control variable 'X' not used within the loop body. If this is intended, start the name with an underscore.
|
||||
ignore = E121,E122,E123,E124,E126,E127,E128,E129,E501,
|
||||
H104,H306,H401,H404,H405,H501,
|
||||
H104,H306,H404,H405,H501,
|
||||
F821,
|
||||
B007
|
||||
# H106 Don’t put vim configuration in source files (off by default).
|
||||
|
Loading…
Reference in New Issue
Block a user