From: Michał Kępień Date: Thu, 28 Oct 2021 12:03:04 +0000 (+0200) Subject: Disable PyLint warning C0209 X-Git-Tag: v9.17.20~17^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=860ca4e0efe3d1a2d63095e4720ccb56224b34f8;p=thirdparty%2Fbind9.git 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. --- diff --git a/.pylintrc b/.pylintrc index 178a06a801d..f9b1110547f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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