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
Currently the ProvidedInstance offers a get_value function which returns the attribute based on the _attrs path. However if the returned attribute is a callable (aka function) then one needs to perform a "double call".
Currently the
ProvidedInstance
offers aget_value
function which returns the attribute based on the_attrs
path. However if the returned attribute is a callable (aka function) then one needs to perform a "double call".For example
Notice how we first get the value
Then we need to invoke it to obtain the
access_key
Proposal - Introduce a
call
functionThis would make the above example appear as:
The text was updated successfully, but these errors were encountered: