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.
add
1 parent 5dc8e0e commit 5327212Copy full SHA for 5327212
stac_fastapi/extensions/stac_fastapi/extensions/core/fields/request.py
@@ -34,7 +34,8 @@ def _get_field_dict(fields: Optional[Set[str]]) -> Dict:
34
if parent not in field_dict:
35
field_dict[parent] = {key}
36
else:
37
- field_dict[parent].add(key)
+ if field_dict[parent] is not ...:
38
+ field_dict[parent].add(key)
39
40
field_dict[field] = ... # type:ignore
41
return field_dict
0 commit comments