Skip to content
Snippets Groups Projects
Commit 223ef725 authored by Jonathan David Mutal's avatar Jonathan David Mutal
Browse files

solving fix

parent 0fba4a4b
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ def read_zip(zipfile='text/cookbook_text.zip'):
yield pre_proccess_line(text)
def read_file(filename='text'):
with open(filename, 'r') as f:
with open(filename, 'r', encoding='utf-8') as f:
text = pre_process_file(f.readlines())
return text
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment