Enable the self-assigning-variable Pylint warning (#2772)

This commit is contained in:
correctmost 2024-11-04 12:34:05 -05:00 committed by GitHub
parent 11987a06d6
commit 0370e893ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View File

@ -107,7 +107,6 @@ class Selector:
if current:
padding += 5
description = unicode_ljust(str(self.description), padding, ' ')
current = current
else:
description = self.description
current = ''

View File

@ -154,7 +154,6 @@ disable = [
"raise-missing-from",
"redefined-builtin",
"redefined-outer-name",
"self-assigning-variable",
"unnecessary-lambda",
"unreachable",
"unspecified-encoding",