diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-10-17 15:29:15 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-10-17 15:42:22 +0200 |
| commit | 3e7e404fda9277dd8fcac4d8a120f25412033f1d (patch) | |
| tree | d0075d355aa0146cf9c41e35d50a1f298f635d9d /.pylintrc | |
| parent | 602a73df9aafe4d99a155a27f2394850b147e8ba (diff) | |
[fix] issues reported by Pylint 4.0
Last major update of Pylint brings some breaking changes [1], fixed in this
patch.
[1] https://pylint.readthedocs.io/en/latest/whatsnew/4/4.0/index.html#breaking-changes
Diffstat (limited to '.pylintrc')
| -rw-r--r-- | .pylintrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -162,7 +162,7 @@ no-docstring-rgx=^_ property-classes=abc.abstractproperty # Regular expression matching correct variable names -variable-rgx=(([a-z][a-zA-Z0-9_]{2,30})|(_[a-z0-9_]*)|([a-z]))$ +variable-rgx=([a-zA-Z0-9_]*)$ [FORMAT] |