Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d99fdf709f
ℹ️ 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".
| raise nexusrpc.HandlerError( | ||
| "Service temporarily unavailable", | ||
| type=nexusrpc.HandlerErrorType.INTERNAL, | ||
| retryable=True, |
There was a problem hiding this comment.
Replace unsupported
retryable kwarg in HandlerError example
nexusrpc.HandlerError does not accept a retryable keyword in current Nexus Python SDK docs (HandlerError.__init__(..., retryable_override: bool | None = None)), so this snippet will raise TypeError if users copy it to implement retryable handler failures. This makes the documented error-handling path non-functional; the example should use retryable_override=True instead.
Useful? React with 👍 / 👎.
What was changed
Add Nexus to Python Skill
Why?
So Python developers using this skill get a easier experience using Nexus.
Checklist
Closes
How was this tested: