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
--use-default previously skipped setting field.required=True, which made
fields non-required and therefore nullable (e.g. str | None = 'foo').
Now fields stay required=True with a new use_default_with_required flag
that allows defaults to render without changing the type. Produces
`status: str = 'foo'` instead of `status: str | None = 'foo'`.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments