Skip to content
Snippets Groups Projects
Commit ef0e3687 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

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.
parent f0a71eda
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,7 @@ ignore = D1,D212,D203 ...@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment