Skip to content

Commit 7df08f4

Browse files
committed
Linters
1 parent 77d8c71 commit 7df08f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/update-uv-build-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
title: Update uv_build version to ${{ steps.update_script.outputs.version }}
3535
body: |
3636
Automated update of uv_build version bounds for uv ${{ steps.update_script.outputs.version }}.
37-
37+
3838
This PR was created automatically by the cron workflow, ping `@konstin` for problems.
3939
branch: bot/update-uv-build-version
4040
delete-branch: true

scripts/update_uv_build_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ def main():
5252
if github_output := os.environ.get("GITHUB_OUTPUT"):
5353
with open(github_output, "a") as f:
5454
f.write(f"version={current_release}\n")
55-
f.write(f"updated=true\n")
55+
f.write("updated=true\n")
5656
else:
5757
print("Already up-to-date source/shared/build-backend-tabs.rst")
5858
if github_output := os.environ.get("GITHUB_OUTPUT"):
5959
with open(github_output, "a") as f:
60-
f.write(f"updated=false\n")
60+
f.write("updated=false\n")
6161

6262

6363
if __name__ == "__main__":

0 commit comments

Comments
 (0)