mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 09:41:06 +08:00
update static typing in omnisint
This commit is contained in:
parent
adfb2c5c77
commit
e587a94c3a
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
class SearchOmnisint:
|
||||
def __init__(self, word):
|
||||
self.word = word
|
||||
self.totalhosts = set()
|
||||
self.totalhosts = list()
|
||||
self.proxy = False
|
||||
|
||||
async def do_search(self):
|
||||
|
@ -15,7 +15,7 @@ async def do_search(self):
|
|||
entries = json.loads(data)
|
||||
self.totalhosts = entries
|
||||
|
||||
async def get_hostnames(self) -> set:
|
||||
async def get_hostnames(self) -> list:
|
||||
return self.totalhosts
|
||||
|
||||
async def process(self, proxy=False):
|
||||
|
|
Loading…
Reference in a new issue