From ef0e3687411902109f2b3965bc26c4626ab78fb2 Mon Sep 17 00:00:00 2001
From: Rafael Guterres Jeffman <rjeffman@redhat.com>
Date: Tue, 22 Mar 2022 11:25:13 -0300
Subject: [PATCH] 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.
---
 setup.cfg | 1 +
 1 file changed, 1 insertion(+)

diff --git a/setup.cfg b/setup.cfg
index 7cae17b6..6c4f672c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -34,6 +34,7 @@ ignore = D1,D212,D203
 
 [pylint.MASTER]
 disable =
+    consider-using-f-string,  # f-string is not supported on Python2
     unspecified-encoding, # open() does not provide `encoding` in Python2
     use-maxsplit-arg,
     redundant-u-string-prefix,
-- 
GitLab