Skip to content

Commit 867f0e6

Browse files
committed
Fixed PEP E501: line too long
1 parent 3d5b4fa commit 867f0e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/helpers/wordlist_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ def get_wordlist(self, wordlist_files=None):
2323
if stdin_words:
2424
wordlist_types.append('stdin')
2525
wordlist.extend(stdin_words)
26-
combined = get_combined_word_lists(wordlist_files or DEFAULT_WORDLIST_FILE)
26+
combined_files = wordlist_files or DEFAULT_WORDLIST_FILE
27+
combined = get_combined_word_lists(combined_files)
2728
if combined:
2829
wordlist_types.append('wordlists: {}'.format(
2930
', '.join(combined['file_paths'])))

0 commit comments

Comments
 (0)