We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a808242 commit e00c834Copy full SHA for e00c834
setuptools_rust/build.py
@@ -784,7 +784,7 @@ def _get_bdist_wheel_cmd( # type: ignore[no-any-unimported]
784
) -> Optional[CommandBdistWheel]:
785
try:
786
cmd_obj = dist.get_command_obj("bdist_wheel", create=create)
787
- cmd_obj.ensure_finalized()
788
- return cast(CommandBdistWheel, cmd_obj) # type: ignore [no-any-unimported]
+ cmd_obj.ensure_finalized() # type: ignore[union-attr]
+ return cast(CommandBdistWheel, cmd_obj) # type: ignore[no-any-unimported]
789
except Exception:
790
return None
0 commit comments