File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff 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
176174def bool_lower (value : bool , / ) -> str :
You can’t perform that action at this time.
0 commit comments