Skip to content

Commit

Permalink
fix: πŸ› encoding
Browse files Browse the repository at this point in the history
closes #107
  • Loading branch information
melMass committed Oct 10, 2023
1 parent d7b8ac8 commit 5af2840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
def extract_nodes_from_source(filename):
source_code = ""

with open(filename, "r") as file:
with open(filename, "r", encoding="utf8") as file:
source_code = file.read()

nodes = []
Expand Down

0 comments on commit 5af2840

Please sign in to comment.