Skip to content

Commit 457d0fa

Browse files
committed
Fixed E501: line too long
1 parent 26a8843 commit 457d0fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

VHostScan.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def main():
3232
arguments = parser.parse(sys.argv[1:])
3333

3434
wordlist_helper = WordList()
35-
wordlist, wordlist_types = wordlist_helper.get_wordlist(arguments.wordlists)
35+
wordlist, wordlist_types = wordlist_helper.get_wordlist(
36+
arguments.wordlists)
3637

3738
if len(wordlist) == 0:
3839
print("[!] No words found in provided wordlists, unable to scan.")

0 commit comments

Comments
 (0)