Skip to content

Commit 80a9d86

Browse files
Remove obsolete BaseChecker.__implements__ (#60)
* Remove obsolete `BaseChecker.__implements__` > See pylint-dev/pylint#9094 * Update CHANGELOG.md
1 parent 80e3d8c commit 80a9d86

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Changed minimum Python version to 3.8.X
1313

14+
### Fixed
15+
16+
- Compatibility with Pylint 3.0
17+
1418
### Repository
1519

1620
- Replace most Python pre-commit hooks with [ruff](https://beta.ruff.rs/docs/)

pylint_secure_coding_standard.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
import astroid
2525
from pylint.checkers import BaseChecker
26-
from pylint.interfaces import IAstroidChecker
2726

2827
# ==============================================================================
2928
# Helper functions
@@ -384,8 +383,6 @@ class SecureCodingStandardChecker(BaseChecker): # pylint: disable=too-many-inst
384383

385384
DEFAULT_MAX_MODE = 0o755
386385

387-
__implements__ = (IAstroidChecker,)
388-
389386
name = 'secure-coding-standard'
390387
options = (
391388
(

0 commit comments

Comments
 (0)