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
This code throw an error because it try to pass the proxy to kargs, because it's the first argument of f and doesn't have a default value. But in this case f doesn't take any positional argument :
To clarify - is this new behaviour, i.e. things were working for you before, but got broken now, or have you just discovered it? What API are you trying to follow?
There is multiple errors with the
controls
argument of@interact
.To use it, the decorated function must have a
**kargs
argument so it can pass the controls.This code throw an error because it try to pass the proxy to
kargs
, because it's the first argument off
and doesn't have a default value. But in this casef
doesn't take any positional argument :I can resolve it by adding any argument before
**kargs
(any control or an argument for the proxy):In this case, it doesn't throw any error but sagecell add an input control with label kargs
For now I just do this:
The text was updated successfully, but these errors were encountered: