Skip to content

Commit 6206f29

Browse files
committed
Fixed PEP8 E126: continuation line over-indented for hanging indent
1 parent 867f0e6 commit 6206f29

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

VHostScan.py

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

3434
wordlist_helper = WordList()
35-
wordlist, word_list_types = wordlist_helper.get_wordlist(arguments.wordlist)
35+
wordlist, wordlist_types = wordlist_helper.get_wordlist(arguments.wordlist)
3636

3737
if len(wordlist) == 0:
3838
print("[!] No words found in provided wordlists, unable to scan.")
@@ -43,7 +43,7 @@ def main():
4343
"port {port} and {inputs}".format(
4444
host=arguments.target_hosts,
4545
port=arguments.port,
46-
inputs=', '.join(word_list_types),
46+
inputs=', '.join(wordlist_types),
4747
)
4848
)
4949

lib/helpers/output_helper.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ def write_grepable(self, filename):
3535
def output_normal_likely(self):
3636
uniques = False
3737
depth = str(self.scanner.unique_depth)
38-
output = "\n[+] Most likely matches with a unique count "\
39-
"of {} or less:".format(depth)
38+
output = (
39+
"\n[+] Most likely matches with a unique count "
40+
"of {} or less:").format(depth)
4041

4142
for p in self.scanner.likely_matches():
4243
output += "\n\t[>] {}".format(p)
@@ -45,8 +46,9 @@ def output_normal_likely(self):
4546
if(uniques):
4647
return output
4748
else:
48-
return "\n[!] No matches with an" \
49-
" unique count of {} or less.".format(depth)
49+
return (
50+
"\n[!] No matches with an"
51+
" unique count of {} or less.").format(depth)
5052

5153
def output_json(self, filename):
5254
file = file_helper(filename)

0 commit comments

Comments
 (0)