From ea2c9917a668cb83636a8a79f4c7e56438be298f Mon Sep 17 00:00:00 2001 From: Oliver Ruebel Date: Sun, 31 Dec 2023 23:50:14 -0800 Subject: [PATCH] Fix ruff --- src/hdmf_zarr/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hdmf_zarr/utils.py b/src/hdmf_zarr/utils.py index 2143e754..328f4caa 100644 --- a/src/hdmf_zarr/utils.py +++ b/src/hdmf_zarr/utils.py @@ -538,6 +538,7 @@ def hdf5_to_zarr_filters(h5dataset) -> list: else: warn(f"{h5dataset.name} HDF5 filter id {filter_id} with properties {properties} ignored in Zarr.") return filters + @staticmethod def is_h5py_dataset(obj): """Check if the object is an instance of h5py.Dataset without requiring import of h5py"""