Skip to content

Commit 66397e8

Browse files
committed
Fixed PEP8 for STDIN bugfix
1 parent 88b3c53 commit 66397e8

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
@@ -34,7 +34,8 @@ def main():
3434
wordlist = []
3535
word_list_types = []
3636

37-
default_wordlist = DEFAULT_WORDLIST_FILE if not sys.stdin.isatty() else None
37+
default_wordlist = DEFAULT_WORDLIST_FILE \
38+
if not sys.stdin.isatty() else None
3839

3940
if not sys.stdin.isatty():
4041
word_list_types.append('stdin')

0 commit comments

Comments
 (0)