diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2022-03-08 11:01:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 11:01:40 +0100 |
commit | 444e9e1a6e67dba23d050e638ae027ee44414a08 (patch) | |
tree | fb4eb437a85546e9839927f5d5db3968387d60ca /pylint/extensions/code_style.py | |
parent | 4649153dae5d55b3ac01787a7a61b25624077526 (diff) | |
download | pylint-git-444e9e1a6e67dba23d050e638ae027ee44414a08.tar.gz |
Restore the useful part of the python3 checker (#5843)
* Reinstate checks from the python3 checker that are still useful for py3
Closes #5025
Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'pylint/extensions/code_style.py')
-rw-r--r-- | pylint/extensions/code_style.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/code_style.py b/pylint/extensions/code_style.py index 7082c991c..5a3e3ba17 100644 --- a/pylint/extensions/code_style.py +++ b/pylint/extensions/code_style.py @@ -28,7 +28,7 @@ class CodeStyleChecker(BaseChecker): i.e. detect a common issue or improve performance => it should probably be part of the core checker classes 2. Is it something that would improve code consistency, - maybe because it's slightly better with regards to performance + maybe because it's slightly better with regard to performance and therefore preferred => this is the right place 3. Everything else should go into another extension """ |