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

Please mypy

Mypy doesn't like some annotation in web.py,
this commits aims at pleasing it.
parent 0902e9e3
No related branches found
Tags 0.12.1
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