removed unnecessary brackets

This commit is contained in:
Somdev Sangwan
2021-01-28 16:38:56 +05:30
committed by GitHub
parent aedf5b0581
commit 43cde850b5

View File

@@ -61,7 +61,7 @@ else:
# PIPE output from other tools such as httprobe etc # PIPE output from other tools such as httprobe etc
if ( sys.stdin.isatty()): if sys.stdin.isatty():
urls = create_url_list(target, inp_file) urls = create_url_list(target, inp_file)
else: else:
urls = create_stdin_list(target, sys.stdin) urls = create_stdin_list(target, sys.stdin)