Skip to content

Commit e1d86a2

Browse files
authored
Merge pull request #9 from saadmk11/fix-group-ctx-manager
Fix `group()` Context Manager `end_group()` function call not passing `use_subprocess`
2 parents 4419af6 + 3607463 commit e1d86a2

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)