From d3fee7adbffca7cca89ba8cf7581200d2d4e9f79 Mon Sep 17 00:00:00 2001 From: Jeremy Magland Date: Fri, 10 Nov 2023 14:32:03 -0500 Subject: [PATCH] remove unnecessary line in hdmf.py Co-authored-by: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> --- src/neuroconv/tools/hdmf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/neuroconv/tools/hdmf.py b/src/neuroconv/tools/hdmf.py index bda951f4a..dc919bc38 100644 --- a/src/neuroconv/tools/hdmf.py +++ b/src/neuroconv/tools/hdmf.py @@ -37,7 +37,6 @@ def _get_default_buffer_shape(self, buffer_gb: float = 1.0) -> Tuple[int]: return tuple(sub_square_buffer_shape) elif num_axes == 1: smallest_chunk_axis = 0 - second_smallest_chunk_axis = -1 # Handle the case where the single axis is too large to fit in the buffer if axis_sizes_bytes[0] > target_buffer_bytes: k1 = np.floor(target_buffer_bytes / chunk_bytes)