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
{{ message }}
This repository was archived by the owner on Apr 20, 2020. It is now read-only.
d = {0 : "astring"}
slot.setValue(d)
slot[:].wait() # returns the full dictionary
slot.value # returns the string "astring"
Slot.value() assumes that the value was wrapped in a numpy.ndarray. Either this should happen automatically in Slot.setValue(), or this assumption should be weakened.
The text was updated successfully, but these errors were encountered:
This fixes the particular issue observed in #76, which involved a "value slot" where the value is a dict.
This issue needs to be fixed more generally. See also: ilastik/ilastik#704 and ilastik/ilastik#705
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Assuming we have some slot called
slot
:Slot.value()
assumes that the value was wrapped in anumpy.ndarray
. Either this should happen automatically inSlot.setValue()
, or this assumption should be weakened.The text was updated successfully, but these errors were encountered: