diff --git a/backend_py/primary/primary/services/sumo_access/queries/grid3d.py b/backend_py/primary/primary/services/sumo_access/queries/grid3d.py index 6c8da7c8b..c7291cb61 100644 --- a/backend_py/primary/primary/services/sumo_access/queries/grid3d.py +++ b/backend_py/primary/primary/services/sumo_access/queries/grid3d.py @@ -110,8 +110,6 @@ async def try_query_with_field(field: GridPropertyField) -> Tuple[Optional[str], # Try with tagname first grid_geometry_id, grid_property_id = await try_query_with_field(GridPropertyField.TAGNAME) - if grid_geometry_id is None: - raise InvalidDataError("Did not find expected document types", service=Service.SUMO) # If no results, try with geometry.name if grid_property_id is None: grid_geometry_id, grid_property_id = await try_query_with_field(GridPropertyField.GEOMETRY_NAME)