ignore new pylint warning to fix CI
Hanno Böck

Hanno Böck commited on 2021-10-16 14:29:05
Zeige 1 geänderte Dateien mit 2 Einfügungen und 1 Löschungen.

... ...
@@ -13,7 +13,8 @@ class TestCodingstyle(unittest.TestCase):
13 13
         subprocess.run(["pyflakes"] + pyfiles, check=True)
14 14
 
15 15
         pylint_disable = "missing-docstring,invalid-name,duplicate-code," \
16
-                         + "too-many-arguments,consider-using-with"
16
+                         + "too-many-arguments,consider-using-with," \
17
+                         + "consider-using-f-string"
17 18
         subprocess.run(["pylint", "--disable=%s" % pylint_disable]
18 19
                        + pyfiles, check=True)
19 20
 
20 21