Skip to content

Commit 6391942

Browse files
nicolasmorinirjarry
authored andcommitted
Disable new pylint warning globally
* Disable "consider-using-f-string" * pylint v2.11.0 added a warning suggesting to use f-strings: - https://pylint.pycqa.org/en/latest/whatsnew/2.11.html * Due to backwards compatibility requirements to support python3.5, f-strings cannot be used in this case
1 parent 6dce453 commit 6391942

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ enable=all
6969
disable=
7070
bad-continuation,
7171
broad-except,
72+
consider-using-f-string,
7273
cyclic-import,
7374
duplicate-code,
7475
file-ignored,

0 commit comments

Comments
 (0)