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
Line 437: with (tifffile.TiffWriter(filename_root + '_gray.tif') as gr,
^
SyntaxError: invalid syntax
I don't think my python likes the two assigns in the one 'with... as...' statement.
I would suggest rewriting lines 437-439 as:
with tifffile.TiffWriter(filename_root + '_gray.tif') as gr:
with tifffile.TiffWriter(filename_root + '_rgba.tif') as rgba:
for g, t in zip(gray, thickness):
The text was updated successfully, but these errors were encountered:
I don't think my python likes the two assigns in the one 'with... as...' statement.
I would suggest rewriting lines 437-439 as:
The text was updated successfully, but these errors were encountered: