Skip to content

Commit ff3f44e

Browse files
committed
Update backend.py
1 parent 4db65ab commit ff3f44e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_build_backend/backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def _bootstrap_build(temp_path: str, config_settings: dict[str, list[str] | str]
133133
assert archive_name.endswith(".zip")
134134
with zipfile.ZipFile(archive_path) as zip_:
135135
zip_.extractall(path=temp_path_)
136-
print([x for x in temp_path_.iterdir())
136+
print(list(temp_path_.iterdir()))
137137
cmake_path = next(temp_path_.glob("cmake-*/bin/cmake.exe"))
138138

139139
return str(cmake_path)

0 commit comments

Comments
 (0)