Skip to content
Snippets Groups Projects
Commit fff07e9d authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Removed parenthesis

parent 4eb096bd
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ class IlastikPixelClassifierModel(IlastikImageToImageModel):
]
pxmaps = self.shell.workflow.batchProcessingApplet.run_export(dsi, export_to_array=True) # [z x h x w x n]
assert(len(pxmaps) == 1, 'ilastik generated more than one pixel map')
assert len(pxmaps) == 1, 'ilastik generated more than one pixel map'
yxcz = np.moveaxis(
pxmaps[0],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment