Skip to content

Commit 7fdabc7

Browse files
committed
csv file encoding in utf-8
2 parents 070c65a + e2697b7 commit 7fdabc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paifulogger/src/log_into_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def log_into_csv(paifu: Paifu, local_str: local_str, output: str):
3030
local_str.preR,
3131
]
3232
)
33-
df = read_csv(path, index_col=0)
33+
df = read_csv(path, index_col=0, encoding="utf-8")
3434
writer.writerow(
3535
[
3636
df.shape[0],

0 commit comments

Comments
 (0)