Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 7b6037fc06
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| class CoordinateAxes: | ||
| """Scene coordinate axes (right, up, front).""" | ||
|
|
||
| right: CoordinateAxis | ||
| up: CoordinateAxis |
There was a problem hiding this comment.
Export CoordinateAxes in the runtime module
This stub declares a top-level CoordinateAxes, but ufbx/__init__.py never imports it from _ufbx, so ufbx.CoordinateAxes will raise AttributeError at runtime even though type checkers accept it. That mismatch is triggered whenever users follow the stub (e.g., for isinstance(x, ufbx.CoordinateAxes) or type annotations) and will fail in regular execution; consider importing and adding it to __all__ to match the stub and Scene.axes return type.
Useful? React with 👍 / 👎.
No description provided.