Please mypy
Mypy doesn't like some annotation in web.py, this commits aims at pleasing it.
This commit is contained in:
parent
0902e9e330
commit
693408f1a6
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user