From f68b0046fcc978d044410f089a89695b6e8740b1 Mon Sep 17 00:00:00 2001 From: lukebfunk Date: Thu, 26 Aug 2021 22:41:06 -0400 Subject: [PATCH] whitespace --- nd2_dask/nd2_reader.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nd2_dask/nd2_reader.py b/nd2_dask/nd2_reader.py index 5ee3842..7482801 100644 --- a/nd2_dask/nd2_reader.py +++ b/nd2_dask/nd2_reader.py @@ -71,7 +71,6 @@ def get_metadata(path): t_scale = meta['experiment']['loops'][0]['sampling_interval'] / 1e3 except IndexError: t_scale = 1 - scale = [1, z_scale, -y_scale, -x_scale] # Translation @@ -107,7 +106,6 @@ def get_nd2reader_nd2_vol(path, c, frame): with ND2Reader(path) as nd2_data: if 'c' in nd2_data.axes: nd2_data.default_coords['c'] = c - nd2_data.bundle_axes = [ax for ax in 'zyx' if ax in nd2_data.axes] v = nd2_data.get_frame(frame) v = np.array(v,ndmin=4)