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
Won't fix this, we'll let the user decide whether to pass arguments by name or position. Since the code generator passes all optional arguments by name in the generated Python code, we can still freely swap optional name-only parameters around there.
Is your feature request related to a problem?
We can currently not enforce that some arguments must be passed by name only. This means, we can never change their order.
Desired solution
The Python solution with
*
is quite confusing. We could instead enforce that all optional parameters must be passed by name.Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered: