From fa8ac4e725f5ee144dc6deb8f519e63af302f256 Mon Sep 17 00:00:00 2001 From: Luca Marconato Date: Mon, 15 Dec 2025 14:55:15 +0100 Subject: [PATCH] fix small typo exception --- src/spatialdata/_core/query/spatial_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spatialdata/_core/query/spatial_query.py b/src/spatialdata/_core/query/spatial_query.py index 36b40748..c74375b6 100644 --- a/src/spatialdata/_core/query/spatial_query.py +++ b/src/spatialdata/_core/query/spatial_query.py @@ -673,7 +673,7 @@ def _( ) if not (len_df := len(in_intrinsic_bounding_box)) == (len_bb := len(min_coordinate)): - raise ValueError(f"Number of dataframes `{len_df}` is not equal to the number of bounding boxes `{len_bb}`.") + raise ValueError(f"Lenght of dataframe `{len_df}` is not equal to the number of bounding boxes `{len_bb}`.") points_in_intrinsic_bounding_box: list[DaskDataFrame | None] = [] points_pd = points.compute() attrs = points.attrs.copy()