1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-04-24 15:11:30 +02:00

Removing unneeded from __future__ import statements.

Since we are on Python 3.6 and up, we don't need those anymore.
This commit is contained in:
2020-04-19 17:38:58 +02:00
parent 41b687ee27
commit 48fedea799
331 changed files with 1178 additions and 2067 deletions
+6 -9
View File
@@ -1,13 +1,6 @@
# -*- encoding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
'''
"""
CSS property propagation class.
'''
__license__ = 'GPL v3'
__copyright__ = '2008, Marshall T. Vandegrift <llasram@gmail.com>'
"""
import os, re, logging, copy, unicodedata, numbers
import pkg_resources
from operator import itemgetter
@@ -25,6 +18,10 @@ from ebook_converter.css_selectors import Select, SelectorError, INAPPROPRIATE_P
from ebook_converter.polyglot.builtins import iteritems, unicode_type, filter
from ebook_converter.tinycss.media3 import CSSMedia3Parser
__license__ = 'GPL v3'
__copyright__ = '2008, Marshall T. Vandegrift <llasram@gmail.com>'
css_parser_log.setLevel(logging.WARN)
_html_css_stylesheet = None