From 5af284067c65042bcdfff04a5d5a2360bf9e4af7 Mon Sep 17 00:00:00 2001 From: melMass Date: Tue, 10 Oct 2023 14:40:44 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20encoding?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes #107 --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index f3c8832..33e9907 100644 --- a/__init__.py +++ b/__init__.py @@ -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 = []