You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build: fix import style for ModuleNotFoundError compatibility
`from cuda import pathfinder` raises ImportError (not ModuleNotFoundError)
when the cuda namespace exists but pathfinder is not a submodule.
Switch to `import cuda.pathfinder` which raises ModuleNotFoundError
when the submodule is missing.
Made-with: Cursor
0 commit comments