Skip to content

Commit

Permalink
laramies#1383 improved readability
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonthegoon committed Jul 24, 2023
1 parent 25fe4ab commit 805a502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theHarvester/discovery/takeover.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async def do_take(self) -> None:
tup_resps = await AsyncFetcher.fetch_all(
all_hosts, takeover=True, proxy=self.proxy
)
tup_resps = (tup for tup in tup_resps if len(tup[1]) >= 1)
tup_resps = tuple(tup for tup in tup_resps if len(tup[1]) >= 1)
for url, resp in tup_resps:
await self.check(url, resp)
else:
Expand Down

0 comments on commit 805a502

Please sign in to comment.