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 5a4dc5b commit defafc5Copy full SHA for defafc5
stac_fastapi/sfeos_helpers/stac_fastapi/sfeos_helpers/filter/client.py
@@ -50,10 +50,12 @@ async def get_queryables(
50
return queryables
51
52
properties: Dict[str, Any] = queryables["properties"].copy()
53
- queryables.update({
54
- "properties": properties,
55
- "additionalProperties": False,
56
- })
+ queryables.update(
+ {
+ "properties": properties,
+ "additionalProperties": False,
57
+ }
58
+ )
59
60
mapping_data = await self.database.get_items_mapping(collection_id)
61
mapping_properties = next(iter(mapping_data.values()))["mappings"]["properties"]
0 commit comments