Skip to content

Commit f0fbab4

Browse files
authored
fix: convert set to list
1 parent 4aa6542 commit f0fbab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stac_fastapi/pgstac/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ def _clean_search_args( # noqa: C901
617617
else:
618618
includes.add(field)
619619

620-
base_args["fields"] = {"include": includes, "exclude": excludes}
620+
base_args["fields"] = {"include": list(includes), "exclude": list(excludes)}
621621

622622
if q:
623623
base_args["q"] = q

0 commit comments

Comments
 (0)