Skip to content

Commit

Permalink
fix (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiTheModder authored Nov 30, 2024
1 parent 42257d2 commit 7b70a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def write_compiled_methods(project_dir, compiled_methods):
except Exception as e:
print(f"{str(e)}\n")

with open(path.join(source_dir, "compiled_methods.txt"), "w") as fp:
with open(path.join(source_dir, "compiled_methods.txt"), "w", encoding="utf-8") as fp:
fp.write("\n".join(list(map("".join, compiled_methods.keys()))))


Expand Down

0 comments on commit 7b70a8d

Please sign in to comment.