ilastik/lazyflow

can Slot._type be removed?

akreshuk opened this issue · 0 comments

An old issue ilastik/ilastik#290 moved here
In slot.py, the constructor does:

if not hasattr(self, "_type"):
    self._type = None

Then, in InputSlot and OutputSlot, this member is used to store strings input and output.
Could an isinstance call replace this?