Removes if statement for python 2

This commit is contained in:
Jake Soenneker 2020-12-15 22:32:47 -06:00
parent 4f7d436254
commit d7333d9172
1 changed files with 1 additions and 5 deletions

View File

@ -15,11 +15,7 @@ import json
import six.moves.urllib.parse
import sys
if sys.version_info[0] >= 3:
import html
else:
from six.moves import html_parser
html = html_parser.HTMLParser()
import html
from zipfile import ZipFile
from babelfish import language_converters