Skip to content

Commit 0e2e9c3

Browse files
committed
Remove an unneeded Pylint suppression
The related bug has been fixed in Pylint 4.0.1.
1 parent 6505c07 commit 0e2e9c3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

archinstall/lib/models/users.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ def strength(cls, password: str) -> 'PasswordStrength':
4545
symbol = any(not character.isalnum() for character in password)
4646
return cls._check_password_strength(digit, upper, lower, symbol, len(password))
4747

48-
# TODO: Remove the disable line when https://github.com/pylint-dev/pylint/issues/10647 is fixed
49-
# pylint: disable=bare-name-capture-pattern
5048
@classmethod
5149
def _check_password_strength(
5250
cls,

0 commit comments

Comments
 (0)