mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Further pleasing the pylint gods
This commit is contained in:
parent
1f7ee039ad
commit
f8e9f9c87d
14 changed files with 38 additions and 50 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue