From 2f84c940e64e09d783e7fe8cd0677728758d7ee3 Mon Sep 17 00:00:00 2001 From: Seth Hinz Date: Wed, 11 Dec 2024 09:01:34 -0800 Subject: [PATCH] remove old comments --- src/czpeedy/trial_parameters.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/czpeedy/trial_parameters.py b/src/czpeedy/trial_parameters.py index d0ed03f..db07b8f 100644 --- a/src/czpeedy/trial_parameters.py +++ b/src/czpeedy/trial_parameters.py @@ -42,13 +42,8 @@ def __init__( self.shuffle = shuffle self.endianness = endianness - # The name actually varies - # depending on the driver (i.e. zarr vs zarr3 vs N5...) and endianneess. Currently - # only supports zarr, but in the future we should support more. - # Returns a zarr v2 dtype string based on the numpy data type of this `TrialParameters`. # Refernce: https://zarr-specs.readthedocs.io/en/latest/v2/v2.0.html#data-type-encoding - # TODO: This only supports uint16 right now! def dtype_json_v2(self) -> Union[list, str]: # Helper function to parse a regular (not structured) dtype into a zarr v2 dtype string. def field_dtype(dtype: np.dtype) -> str: @@ -99,7 +94,6 @@ def dtype_str(dtype: np.dtype) -> Union[str, list]: return dtype_str(self.dtype) - # TODO: This only supports uint16 right now! def dtype_json_v3(self) -> str: if self.dtype.kind == 'V': return f'r{self.dtype.itemsize * 8}'