Skip to content

Commit

Permalink
Fix import in package
Browse files Browse the repository at this point in the history
  • Loading branch information
graphemecluster committed Mar 11, 2023
1 parent 2e411a4 commit db34f34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ToJyutping/ToJyutping.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from os import path
import pygtrie
import re
import utils
if __package__:
from . import utils
else:
import utils

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit db34f34

Please sign in to comment.