trivial: apply isort (#55470)

This commit is contained in:
Paul Marillonnet 2021-07-08 11:55:17 +02:00 committed by Frédéric Péters
parent 451ee3901e
commit 0f75316e1b
4 changed files with 8 additions and 6 deletions

View File

@ -17,11 +17,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import argparse
import subprocess
import os
import re
import xml.etree.ElementTree as ET
import subprocess
import sys
import xml.etree.ElementTree as ET
inkscape = os.path.abspath(os.path.join(os.path.dirname(__file__), 'inkscape_wrapper.py'))

View File

@ -17,12 +17,12 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import argparse
import subprocess
import os
import re
import xml.etree.ElementTree as ET
import subprocess
import sys
import tempfile
import xml.etree.ElementTree as ET
inkscape = os.path.abspath(os.path.join(os.path.dirname(__file__), 'inkscape_wrapper.py'))

View File

@ -1,9 +1,10 @@
#! /usr/bin/env python
import os
import subprocess
import re
import subprocess
import sys
from lxml import etree
from lxml.html import html_parser

View File

@ -1,8 +1,9 @@
#! /usr/bin/env python
import six
import subprocess
import sys
import six
from lxml import etree
from lxml.html import HTMLParser