Skip to content

Commit

Permalink
Pylint: keep check R0201 enabled
Browse files Browse the repository at this point in the history
In the new version, this check is on an optional extension.  Let's
enable it.

This fixes the following message:

   .pylintrc:1:0: R0022: Useless option value for '--disable', 'R0201'
   was moved to an optional extension, see
   https://pylint.pycqa.org/en/latest/whatsnew/2/2.14/summary.html#removed-checkers.
   (useless-option-value)

Signed-off-by: Cleber Rosa <[email protected]>
  • Loading branch information
clebergnu committed Jan 26, 2023
1 parent e9be05d commit a58e0ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ limit-inference-results=100

# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=
load-plugins=pylint.extensions.no_self_use

# Pickle collected data for later comparisons.
persistent=yes
Expand Down

0 comments on commit a58e0ca

Please sign in to comment.