Remove an unneeded Pylint suppression (#3873)
The related bug has been fixed in Pylint 4.0.1.
This commit is contained in:
parent
6505c073c9
commit
1fa8f2013b
|
|
@ -45,8 +45,6 @@ class PasswordStrength(Enum):
|
|||
symbol = any(not character.isalnum() for character in 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
|
||||
def _check_password_strength(
|
||||
cls,
|
||||
|
|
|
|||
Loading…
Reference in New Issue