Skip to content

Commit 3607463

Browse files
committed
Fix Group Context Manager end_group() function call not passing use_subprocess
1 parent 4419af6 commit 3607463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github_action_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def group(title: str, use_subprocess: bool = False) -> Generator[Any, None, None
400400
"""
401401
start_group(title, use_subprocess=use_subprocess)
402402
yield
403-
end_group()
403+
end_group(use_subprocess=use_subprocess)
404404

405405

406406
def add_mask(value: Any, use_subprocess: bool = False) -> None:

0 commit comments

Comments
 (0)