From 208db5a7c1e1e52684346aa29c1092edeb4daf72 Mon Sep 17 00:00:00 2001 From: "Christopher K. Hoadley" Date: Sat, 7 Dec 2019 17:27:11 -0600 Subject: [PATCH] Remove unneeded assignment of results before main Sherlock call. --- sherlock.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sherlock.py b/sherlock.py index a2b84513..d5ca49f9 100755 --- a/sherlock.py +++ b/sherlock.py @@ -603,9 +603,11 @@ def main(): except (NameError, IndexError): proxy = args.proxy - results = {} - results = sherlock(username, site_data, verbose=args.verbose, - tor=args.tor, unique_tor=args.unique_tor, + results = sherlock(username, + site_data, + verbose=args.verbose, + tor=args.tor, + unique_tor=args.unique_tor, proxy=args.proxy, print_found_only=args.print_found_only, timeout=args.timeout)