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
In #10269 the type hints added for the new flatten option were using Optional[bool] it should instead be bool | None. This should be fixed for the final 0.25.0 release.
The text was updated successfully, but these errors were encountered:
For consistency with the rest of the signature (also the
Optional
import would need to be removed 🙂)Originally posted by @Cryoris in #10269 (comment)
In #10269 the type hints added for the new flatten option were using
Optional[bool]
it should instead bebool | None
. This should be fixed for the final 0.25.0 release.The text was updated successfully, but these errors were encountered: