mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-03 20:40:08 -05:00
Disable PyLint warning C0209
PyLint 2.11 reports a new warning, C0209 (consider-using-f-string). Since f-strings are only available in Python 3.6+, existing scripts cannot be updated to use this feature just yet because they would stop working with older Python versions. Instead, disable PyLint warning C0209 for the time being. Sort all disabled warnings in .pylintrc.
This commit is contained in:
parent
11232eb500
commit
860ca4e0ef
1 changed files with 3 additions and 2 deletions
|
|
@ -1,8 +1,9 @@
|
|||
[MASTER]
|
||||
disable=
|
||||
C0103, # invalid-name
|
||||
C0114, # missing-module-docstring
|
||||
C0115, # missing-class-docstring
|
||||
C0116, # missing-function-docstring
|
||||
C0209, # consider-using-f-string
|
||||
C0415, # import-outside-toplevel
|
||||
R0801, # duplicate-code
|
||||
C0103, # invalid-name
|
||||
C0415,# import-outside-toplevel
|
||||
|
|
|
|||
Loading…
Reference in a new issue