Skip to content

Commit

Permalink
Fix file encoding
Browse files Browse the repository at this point in the history
Signed-off-by: selfkilla666 <[email protected]>
  • Loading branch information
selfkilla666 committed Jan 2, 2024
1 parent 5b865aa commit a0e9f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glyphify/utils/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def load_json_file(path: Path) -> dict[Any, Any]:
```
"""

with open(path, "r") as file:
with open(path, "r", encoding="UTF-8") as file:
return load(file)


Expand Down

0 comments on commit a0e9f91

Please sign in to comment.