Skip to content

Commit

Permalink
stringify file path
Browse files Browse the repository at this point in the history
  • Loading branch information
rongxin-liu committed Nov 19, 2023
1 parent 62fd27b commit 64b36f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check50/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _setup_translation():
from importlib.resources import files
global _translation
_translation = gettext.translation(
"check50", files("check50").joinpath("locale"), fallback=True)
"check50", str(files("check50").joinpath("locale")), fallback=True)
_translation.install()


Expand Down

0 comments on commit 64b36f2

Please sign in to comment.