code styling

This commit is contained in:
Eric Lapouyade 2021-07-31 14:12:22 +02:00
parent ab61d39847
commit bf2240f4b2
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@ Created : 2015-03-12
"""
__version__ = '0.12.0.dev0'
# flake8: noqa
from .inline_image import InlineImage
from .listing import Listing
from .richtext import RichText, R

View File

@ -18,10 +18,10 @@ from docx.opc.constants import RELATIONSHIP_TYPE as REL_TYPE
from jinja2 import Environment, Template, meta
from jinja2.exceptions import TemplateError
try:
from html import escape
from html import escape # noqa: F401
except ImportError:
# cgi.escape is deprecated in python 3.7
from cgi import escape
from cgi import escape # noqa: F401
import re
import six
import binascii