Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions archinstall/lib/models/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ def strength(cls, password: str) -> 'PasswordStrength':
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,
Expand Down