Skip to content

Commit

Permalink
Address lint issue in build.py (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Aug 9, 2023
1 parent 4d86638 commit 8e9219b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _build():
# We won't use the wheel built by maturin directly since
# we want Poetry to build it but we need to retrieve the
# compiled extensions from the maturin wheel.
wheel = list(wheels_dir.glob("*.whl"))[0]
wheel = next(iter(wheels_dir.glob("*.whl")))
with zipfile.ZipFile(wheel.as_posix()) as whl:
whl.extractall(wheels_dir.as_posix())

Expand Down

0 comments on commit 8e9219b

Please sign in to comment.