Further pleasing the pylint gods

This commit is contained in:
Miroslav Stampar
2019-05-30 22:40:51 +02:00
parent 1f7ee039ad
commit f8e9f9c87d
14 changed files with 38 additions and 50 deletions

View File

@@ -635,7 +635,7 @@ def attackDumpedTable():
col_passwords = set()
attack_dict = {}
for column in sorted(columns, key=lambda _: len(_), reverse=True):
for column in sorted(columns, key=len, reverse=True):
if column and column.lower() in COMMON_USER_COLUMNS:
col_user = column
break