Skip to content

Commit 2085ba1

Browse files
committed
no writelines
1 parent 56e5acc commit 2085ba1

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Tools/build/compute-changes.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,11 @@ def write_github_output(outputs: Outputs) -> None:
164164
return
165165

166166
with open(os.environ["GITHUB_OUTPUT"], "a", encoding="utf-8") as f:
167-
f.writelines((
168-
f"run-cifuzz={bool_lower(outputs.run_ci_fuzz)}",
169-
f"run-docs={bool_lower(outputs.run_docs)}",
170-
f"run-hypothesis={bool_lower(outputs.run_hypothesis)}",
171-
f"run-tests={bool_lower(outputs.run_tests)}",
172-
f"run-win-msi={bool_lower(outputs.run_win_msi)}",
173-
))
167+
f.write(f"run-cifuzz={bool_lower(outputs.run_ci_fuzz)}\n")
168+
f.write(f"run-docs={bool_lower(outputs.run_docs)}\n")
169+
f.write(f"run-hypothesis={bool_lower(outputs.run_hypothesis)}\n")
170+
f.write(f"run-tests={bool_lower(outputs.run_tests)}\n")
171+
f.write(f"run-win-msi={bool_lower(outputs.run_win_msi)}\n")
174172

175173

176174
def bool_lower(value: bool, /) -> str:

0 commit comments

Comments
 (0)