Skip to content

Commit

Permalink
Fix HDF5 type usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkinsspatial committed Jan 31, 2025
1 parent fceb871 commit 5d12003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualizarr/readers/hdf/hdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def _get_group_attrs(
return attrs

@staticmethod
def _find_non_coord_dimension_vars(group: h5py.Group) -> List[str]:
def _find_non_coord_dimension_vars(group: H5Group) -> List[str]:
dimension_names = []
non_coordinate_dimesion_variables = []
for name, obj in group.items():
Expand Down

0 comments on commit 5d12003

Please sign in to comment.