From 6e3cdcffe78ad5f0906b17abddc3858b2d4fe139 Mon Sep 17 00:00:00 2001 From: Levi Pesin <35454228+LeviPesin@users.noreply.github.com> Date: Sat, 13 Dec 2025 22:59:33 +1030 Subject: [PATCH] Allow outside import --- mathml2latex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mathml2latex.py b/mathml2latex.py index 3b71c32..bff8f73 100755 --- a/mathml2latex.py +++ b/mathml2latex.py @@ -5,7 +5,7 @@ import os import sys from lxml import etree -from unicode_map import unicode_map +from .unicode_map import unicode_map # MathML to LaTeX conversion with XSLT from Vasil Yaroshevich base_path = os.path.dirname(os.path.realpath(__file__))