From 3e7e404fda9277dd8fcac4d8a120f25412033f1d Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Fri, 17 Oct 2025 15:29:15 +0200 Subject: [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 --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 4f6c72956..3da23df23 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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] -- cgit v1.2.3