1
0
Fork 0
This commit is contained in:
georg 2019-03-01 22:00:23 +00:00
parent cb8a016319
commit c3f097a82b
No known key found for this signature in database
GPG Key ID: 5AD75B414EA41667
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class CSSParser(abstract.AbstractParser):
class AbstractHTMLParser(abstract.AbstractParser):
tags_blacklist = set() # type: Set[str]
# In some html/xml-based formats some tags are mandatory,
# so we're keeping them, but are discaring their content
# so we're keeping them, but are discarding their content
tags_required_blacklist = set() # type: Set[str]
def __init__(self, filename):