Skip to content

Commit 3bf77f7

Browse files
committed
refactor(ci): rename ambiguous variable in release-type.py3
https://claude.ai/code/session_01DNUdELQ1xnVwtZbhdz3K9A
1 parent c064350 commit 3bf77f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/github-actions/release-type.py3

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def dict_path(data, head: str, *tail: str):
2020
return dict_path(value, *tail)
2121

2222
def set_output(name: str, value: str):
23-
with open(environ['GITHUB_OUTPUT'], 'a') as fh:
24-
print(f'{name}={value}', file=fh)
23+
with open(environ['GITHUB_OUTPUT'], 'a') as output_file:
24+
print(f'{name}={value}', file=output_file)
2525

2626
with open('Cargo.toml') as cargo_toml:
2727
data = toml.load(cargo_toml)

0 commit comments

Comments
 (0)