laxsvips commited on
Commit
3951b78
1 Parent(s): d6af7f4

Initial Commit

Browse files
Files changed (1) hide show
  1. helper.py +3 -0
helper.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ def open_file(filepath):
2
+ with open(filepath, 'r', encoding='utf-8') as infile:
3
+ return infile.read()