Skip to content

Commit

Permalink
prospector: disable pylint consider-using-f-string
Browse files Browse the repository at this point in the history
* As the code uses format() as the preferred string formatting
  method, disable the new pylint default that prefers f-strings
  for now. To be revisited in the future.

Change-Id: I1f641076af74719555cccd045130f247f53aa3d3
  • Loading branch information
volans- committed Sep 20, 2021
1 parent 9a1d4c4 commit 500e83d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ pylint:
disable:
- pointless-string-statement # used as documentation for class attributes
- unsubscriptable-object # Breaks for latest pylint https://github.com/PyCQA/pylint/issues/3882
- consider-using-f-string # The code still use format(), disable for now
options:
ignore: vulture_whitelist.py
max-line-length: 120
Expand Down

0 comments on commit 500e83d

Please sign in to comment.