Enable the self-assigning-variable Pylint warning (#2772)
This commit is contained in:
parent
11987a06d6
commit
0370e893ac
|
|
@ -107,7 +107,6 @@ class Selector:
|
|||
if current:
|
||||
padding += 5
|
||||
description = unicode_ljust(str(self.description), padding, ' ')
|
||||
current = current
|
||||
else:
|
||||
description = self.description
|
||||
current = ''
|
||||
|
|
|
|||
|
|
@ -154,7 +154,6 @@ disable = [
|
|||
"raise-missing-from",
|
||||
"redefined-builtin",
|
||||
"redefined-outer-name",
|
||||
"self-assigning-variable",
|
||||
"unnecessary-lambda",
|
||||
"unreachable",
|
||||
"unspecified-encoding",
|
||||
|
|
|
|||
Loading…
Reference in New Issue