mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 03:59:59 -04:00
Silent pylint's line-too-long warning as it's handled better by black
Black allows the lines with string literals to be longer, which is
convenient for descriptive error messages.
(cherry picked from commit 02d1c5fc89)
This commit is contained in:
parent
28e555e035
commit
6bd6777fb7
1 changed files with 1 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ disable=
|
|||
C0115, # missing-class-docstring
|
||||
C0116, # missing-function-docstring
|
||||
C0209, # consider-using-f-string
|
||||
C0301, # line-too-long, handled better by black
|
||||
C0415, # import-outside-toplevel
|
||||
R0801, # duplicate-code
|
||||
R0903, # too-few-public-methods
|
||||
|
|
|
|||
Loading…
Reference in a new issue