We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e2a60a commit 7ce36b6Copy full SHA for 7ce36b6
1 file changed
src/petab_gui/utils.py
@@ -613,7 +613,7 @@ def process_file(filepath, logger):
613
for sep in separators:
614
# read the first line of the file
615
try:
616
- with open(filepath, "r") as file:
+ with open(filepath, "r", encoding="utf-8") as file:
617
header = file.readline().strip().split(sep)
618
if len(header) > 1:
619
separator = sep
0 commit comments