mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-31 03:44:41 +00:00
pylint: Ignore consider-using-f-string.
Newer versions of pylint warns about not using f-strings, but those are not supported in Python 2, which ansible-freeipa still need to support.
This commit is contained in:
@@ -34,6 +34,7 @@ ignore = D1,D212,D203
|
|||||||
|
|
||||||
[pylint.MASTER]
|
[pylint.MASTER]
|
||||||
disable =
|
disable =
|
||||||
|
consider-using-f-string, # f-string is not supported on Python2
|
||||||
unspecified-encoding, # open() does not provide `encoding` in Python2
|
unspecified-encoding, # open() does not provide `encoding` in Python2
|
||||||
use-maxsplit-arg,
|
use-maxsplit-arg,
|
||||||
redundant-u-string-prefix,
|
redundant-u-string-prefix,
|
||||||
|
|||||||
Reference in New Issue
Block a user