1
0
Fork 0

Please mypy

This commit is contained in:
jvoisin 2019-07-13 15:02:01 +02:00
parent b784a9fc7f
commit 47f9cb33bf
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
from html import parser, escape
from typing import Dict, Any, List, Tuple, Set
from typing import Dict, Any, List, Tuple, Set, Optional
import re
import string
@ -96,7 +96,7 @@ class _HTMLParser(parser.HTMLParser):
self.tag_required_blocklist = required_blocklisted_tags
self.tag_blocklist = blocklisted_tags
def handle_starttag(self, tag: str, attrs: List[Tuple[str, str]]):
def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]):
original_tag = self.get_starttag_text()
self.__validation_queue.append(original_tag)