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 has been archived by the owner on Apr 20, 2020. It is now read-only.
slicingtools.is_bounded expects key to be tuple of slices, but key can be mixed tuple of slices and ints.
Test
op.Input[0, 0] =1
Result
File "/home/markus/Coding/hci/lazyflow/lazyflow/slot.py", line 953, in __setitem__
assert slicingtools.is_bounded(key), \
File "/home/markus/Coding/hci/lazyflow/lazyflow/utility/slicingtools.py", line 79, in is_bounded
return all((sl.stop != None for sl in slicing))
File "/home/markus/Coding/hci/lazyflow/lazyflow/utility/slicingtools.py", line 79, in <genexpr>
return all((sl.stop != None for sl in slicing))
AttributeError: 'int' object has no attribute 'stop'
The text was updated successfully, but these errors were encountered:
slicingtools.is_bounded
expects key to be tuple of slices, but key can be mixed tuple of slices and ints.Test
Result
The text was updated successfully, but these errors were encountered: