init
This commit is contained in:
@@ -431,7 +431,7 @@ class HTS:
|
|||||||
return
|
return
|
||||||
|
|
||||||
def getCSV(self, fileName, given_day, result):
|
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)
|
reader = csv.reader(infp)
|
||||||
next(reader)
|
next(reader)
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class Simulation:
|
|||||||
return
|
return
|
||||||
|
|
||||||
def getCSV(self, fileName, given_day, result):
|
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)
|
reader = csv.reader(infp)
|
||||||
next(reader)
|
next(reader)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user