add static typing to hackertarget module

This commit is contained in:
L1ghtn1ng 2020-04-06 21:08:48 +01:00
parent ca4aea034a
commit d0248f8a33

View file

@ -23,5 +23,5 @@ async def process(self, proxy=False):
self.proxy = proxy
await self.do_search()
async def get_hostnames(self):
async def get_hostnames(self) -> list:
return self.total_results.splitlines()