Skip to content

Commit

Permalink
Black format Python sources
Browse files Browse the repository at this point in the history
  • Loading branch information
Trundle committed Nov 8, 2024
1 parent 4d3c15b commit dcff75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/steps/build_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def main():

# Files in the Nix store are read-only and the checkout action then fails
# to clean up afterwards. Help a bit by making the copied files writable.
for (root, dirs, files) in os.walk("dist"):
for root, dirs, files in os.walk("dist"):
for name in dirs:
path = os.path.join(root, name)
os.chmod(path, 0o755)
Expand Down

0 comments on commit dcff75d

Please sign in to comment.