Remove an unneeded Pylint suppression (#3873)

The related bug has been fixed in Pylint 4.0.1.
This commit is contained in:
correctmost 2025-10-17 22:04:09 -04:00 committed by GitHub
parent 6505c073c9
commit 1fa8f2013b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -45,8 +45,6 @@ class PasswordStrength(Enum):
symbol = any(not character.isalnum() for character in password) symbol = any(not character.isalnum() for character in password)
return cls._check_password_strength(digit, upper, lower, symbol, len(password)) return cls._check_password_strength(digit, upper, lower, symbol, len(password))
# TODO: Remove the disable line when https://github.com/pylint-dev/pylint/issues/10647 is fixed
# pylint: disable=bare-name-capture-pattern
@classmethod @classmethod
def _check_password_strength( def _check_password_strength(
cls, cls,