File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Changed minimum Python version to 3.8.X
13
13
14
+ ### Fixed
15
+
16
+ - Compatibility with Pylint 3.0
17
+
14
18
### Repository
15
19
16
20
- Replace most Python pre-commit hooks with [ ruff] ( https://beta.ruff.rs/docs/ )
Original file line number Diff line number Diff line change 23
23
24
24
import astroid
25
25
from pylint .checkers import BaseChecker
26
- from pylint .interfaces import IAstroidChecker
27
26
28
27
# ==============================================================================
29
28
# Helper functions
@@ -384,8 +383,6 @@ class SecureCodingStandardChecker(BaseChecker): # pylint: disable=too-many-inst
384
383
385
384
DEFAULT_MAX_MODE = 0o755
386
385
387
- __implements__ = (IAstroidChecker ,)
388
-
389
386
name = 'secure-coding-standard'
390
387
options = (
391
388
(
You can’t perform that action at this time.
0 commit comments