Skip to content

Commit

Permalink
Remove debug statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Jul 5, 2022
1 parent 41abebe commit 44e79c7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion large_image/tilesource/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,6 @@ def _applyStyle(self, image, style, x, y, z, frame=None): # noqa
output = (output * 65535 / 255).astype(numpy.uint16)
elif dtype == 'float':
output /= 255
print(axis, output.shape)
if axis is not None and 0 <= int(axis) < output.shape[2]:
output = output[:, :, axis:axis + 1]
return output
Expand Down

0 comments on commit 44e79c7

Please sign in to comment.