This commit is contained in:
dsyoon
2022-07-08 11:01:30 +09:00
parent bfd9b580be
commit 017e89aa95
2 changed files with 2 additions and 2 deletions

View File

@@ -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)

View File

@@ -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)