init
This commit is contained in:
@@ -431,7 +431,7 @@ class HTS:
|
||||
return
|
||||
|
||||
def getCSV(self, fileName, given_day, result):
|
||||
with open(fileName, 'r') as infp:
|
||||
with open(fileName, 'r', encoding='utf-8') as infp:
|
||||
reader = csv.reader(infp)
|
||||
next(reader)
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ class Simulation:
|
||||
return
|
||||
|
||||
def getCSV(self, fileName, given_day, result):
|
||||
with open(fileName, 'r') as infp:
|
||||
with open(fileName, 'r', encoding='utf-8') as infp:
|
||||
reader = csv.reader(infp)
|
||||
next(reader)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user