1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-17 23:51:30 +08:00

Opt: Hide SuccessInterval, FailureInterval and ServerUpdate (#1099)

They are not used actually
This commit is contained in:
LmeSzinc
2022-05-08 14:02:28 +08:00
parent 520eacdd5a
commit ec8f4425de
3 changed files with 31 additions and 25 deletions

View File

@@ -212,7 +212,7 @@ class ConfigGenerator:
lines.append(f' {path_to_arg(path)} = {repr(parse_value(data["value"], data=data))}{option}')
visited_path.add(path)
with open(filepath_code(), 'w', encoding='utf-8') as f:
with open(filepath_code(), 'w', encoding='utf-8', newline='') as f:
for text in lines:
f.write(text + '\n')