Import lxml locally to avoid hard dependency
The code is used in the Inkscape plugin only.
This commit is contained in:
parent
4ab1dcc323
commit
121e2107fb
|
@ -15,7 +15,6 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import xml.parsers.expat
|
import xml.parsers.expat
|
||||||
from lxml import etree as et
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|
||||||
|
@ -136,6 +135,8 @@ def ticksPerMM(tree):
|
||||||
return x2/width, y2/height
|
return x2/width, y2/height
|
||||||
|
|
||||||
def svgMerge(box, inkscape, output):
|
def svgMerge(box, inkscape, output):
|
||||||
|
from lxml import etree as et
|
||||||
|
|
||||||
parser = et.XMLParser(remove_blank_text=True)
|
parser = et.XMLParser(remove_blank_text=True)
|
||||||
|
|
||||||
src_tree = et.parse(box, parser)
|
src_tree = et.parse(box, parser)
|
||||||
|
|
Loading…
Reference in New Issue