Skip to content

Commit

Permalink
fix root dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
bminixhofer committed Jun 26, 2024
1 parent 15b00cd commit f4f9df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wtpsplit/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def set_punctuation_file(cls, file_name):

@cached_property
def ROOT_DIR(self):
return Path(os.path.abspath(os.path.join(os.path.dirname(__file__))))
return Path(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))

@cached_property
def CACHE_DIR(self):
Expand Down

0 comments on commit f4f9df8

Please sign in to comment.