Skip to content

Commit

Permalink
pylint: Skip consider-using-f-string
Browse files Browse the repository at this point in the history
- f-strings are not mandatory
- format can be more readable
- there are 140 spotted issues

Fixes: freeipa#244
Signed-off-by: Stanislav Levin <[email protected]>
  • Loading branch information
stanislavlevin committed Feb 15, 2022
1 parent d6035fe commit 9c6c009
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ disable=
consider-using-with, # pylint 2.8.0, contextmanager is not mandatory
consider-using-max-builtin, # pylint 2.8.0, can be more readable
consider-using-min-builtin, # pylint 2.8.0, can be more readable
consider-using-f-string, # pylint 2.11.0, format can be more readable

[REPORTS]

Expand Down

0 comments on commit 9c6c009

Please sign in to comment.