We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2395107 commit 5679b99Copy full SHA for 5679b99
1 file changed
Input Processing/parse_annotations.py
@@ -38,7 +38,7 @@ def replaceSymbols(line):
38
39
def parse_annotations(filename, act_number):
40
annotations = []
41
- with open(filename) as csvfile:
+ with open(filename, encoding='ansi') as csvfile:
42
csvreader = csv.reader(csvfile, delimiter=',')
43
is_header = True
44
current_measures = None
0 commit comments