Skip to content

Commit

Permalink
rel path resolving fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dynnamitt committed Oct 19, 2022
1 parent 8500413 commit ba8d930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ts_language_collection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

from langs import get_language,get_parser
from .langs import get_language,get_parser
2 changes: 1 addition & 1 deletion src/ts_language_collection/langs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pickle
from pathlib import Path

HERE = Path(".")
HERE = Path(__file__).absolute().parent

# DESerialization
with open(common.lang_names_index_file(HERE), "rb") as infile:
Expand Down

0 comments on commit ba8d930

Please sign in to comment.