diff --git a/datahub/dsr.py b/datahub/dsr.py index 6299621..ee07de0 100644 --- a/datahub/dsr.py +++ b/datahub/dsr.py @@ -82,6 +82,7 @@ def validate_dsr_data(data: dict[str, NDArray | str]) -> None: if array.shape != shape: aliases.append(alias) log.error(f"'{alias}' has shape {array.shape}, expected {shape}") + continue if not np.issubdtype(array.dtype, np.number) and not np.issubdtype( array.dtype, np.character ):