From 8f7dd9d75c09fc1a09cd21b6e69f64e5eec4e1ef Mon Sep 17 00:00:00 2001 From: yoonthegoon <71526721+yoonthegoon@users.noreply.github.com> Date: Sun, 23 Jul 2023 22:24:43 -0400 Subject: [PATCH] remove import shadowed by loop variable --- theHarvester/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/theHarvester/__main__.py b/theHarvester/__main__.py index 6c8763cd..36b2790c 100644 --- a/theHarvester/__main__.py +++ b/theHarvester/__main__.py @@ -848,7 +848,6 @@ async def start(rest_args: Optional[argparse.Namespace] = None): print('\n[*] Virtual hosts:') print('------------------') for data in host_ip: - from theHarvester.discovery import bingsearch basic_search = bingsearch.SearchBing(data, limit, start) await basic_search.process_vhost() results = await basic_search.get_allhostnames()