mirror of https://github.com/CIRCL/lookyloo
chg: Fix typing
parent
806c738fcd
commit
e29f2d93af
|
@ -17,7 +17,7 @@ from lookyloo.lookyloo import Lookyloo
|
||||||
from lookyloo.exceptions import NoValidHarFile
|
from lookyloo.exceptions import NoValidHarFile
|
||||||
from .proxied import ReverseProxied
|
from .proxied import ReverseProxied
|
||||||
|
|
||||||
from typing import Optional, Dict, Any
|
from typing import Optional, Dict, Any, List
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -165,7 +165,7 @@ def hostnode_popup(tree_uuid: str, node_uuid: str):
|
||||||
}
|
}
|
||||||
|
|
||||||
urls = []
|
urls = []
|
||||||
sanejs_lookups = []
|
sanejs_lookups: Dict[str, List[str]] = {}
|
||||||
if hasattr(lookyloo, 'sanejs') and lookyloo.sanejs.available:
|
if hasattr(lookyloo, 'sanejs') and lookyloo.sanejs.available:
|
||||||
to_lookup = [url.body_hash for url in hostnode.urls if hasattr(url, 'body_hash')]
|
to_lookup = [url.body_hash for url in hostnode.urls if hasattr(url, 'body_hash')]
|
||||||
sanejs_lookups = lookyloo.sanejs.hashes_lookup(to_lookup)
|
sanejs_lookups = lookyloo.sanejs.hashes_lookup(to_lookup)
|
||||||
|
|
Loading…
Reference in New Issue