Skip to content
Snippets Groups Projects
Commit af62b87f authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Please a bit mypy?

parent 0902e9e3
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,8 @@ class _HTMLParser(parser.HTMLParser):
if data.strip():
self.__textrepr += escape(data)
def handle_startendtag(self, tag: str, attrs: List[Tuple[str, str]]):
def handle_startendtag(self, tag: str,
attrs: List[Tuple[str, Optional[str]]]):
if tag in self.tag_required_blocklist | self.tag_blocklist:
meta = {k:v for k, v in attrs}
name = meta.get('name', 'harmful metadata')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment