Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Jan 27, 2024
1 parent bfc2ed0 commit 878125c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/build_universal_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def main():
wheel_base, platform = wheel_names[-1].rsplit("-", 1)
platform_base, arch = platform.rsplit("_", 1)

universal_wheel_path = wheels_dir / f"{wheel_base}-{platform_base}_universal2.whl"
universal_wheel_path = (
wheels_dir / f"{wheel_base}-{platform_base}_universal2.whl"
)
fuse_wheels(wheel_paths[0], wheel_paths[1], universal_wheel_path)
print(universal_wheel_path)

Expand Down

0 comments on commit 878125c

Please sign in to comment.