We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71a355 commit 5db1889Copy full SHA for 5db1889
stac_fastapi/types/stac_fastapi/types/search.py
@@ -35,7 +35,7 @@ def str2bbox(x: str) -> Optional[BBox]:
35
"""Convert string to BBox based on , delimiter."""
36
if x:
37
t = tuple(float(v) for v in str2list(x))
38
- assert len(t) == 4
+ assert len(t) == 4, f"BBox '{x}' must have 4 values."
39
return t
40
41
return None
0 commit comments