From 5a2d9ac7642f97c8ded420af2fae624ac9c4cb1f Mon Sep 17 00:00:00 2001 From: Gabriele Girelli Date: Wed, 2 Sep 2020 21:14:24 +0200 Subject: [PATCH] Update stitched.py --- nd2reader/stitched.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nd2reader/stitched.py b/nd2reader/stitched.py index 41bd43e..9721e21 100644 --- a/nd2reader/stitched.py +++ b/nd2reader/stitched.py @@ -13,7 +13,6 @@ def get_unwanted_bytes_ids(image_group_data, image_data_start, height, width): n_unwanted_bytes = (len(image_group_data[image_data_start:])) % (height * width) if not n_unwanted_bytes: return np.arange(0) - print(n_unwanted_bytes) assert 0 == n_unwanted_bytes % height, ( "An unexpected number of extra bytes was encountered based on the expected" + " frame size, therefore the file could not be parsed."