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
It is currently func(da, target, backend, ...). I think we should add a top level function get_backend that takes the target and identifies the backend from that so the call signature can become func(da, target, ...).
To get this to work 3 changes are needed:
add get_backend function
change .map to not pass the backend argument to the functions when it calls them
change all functions in the visuals module to not take a backend argument and to instead do backend = get_backend(target) inside them
The text was updated successfully, but these errors were encountered:
It is currently
func(da, target, backend, ...)
. I think we should add a top level functionget_backend
that takes the target and identifies the backend from that so the call signature can becomefunc(da, target, ...)
.To get this to work 3 changes are needed:
get_backend
function.map
to not pass the backend argument to the functions when it calls themvisuals
module to not take a backend argument and to instead dobackend = get_backend(target)
inside themThe text was updated successfully, but these errors were encountered: