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 48ec7be commit b2cf5f1Copy full SHA for b2cf5f1
stac_fastapi/core/stac_fastapi/core/utilities.py
@@ -92,13 +92,7 @@ def filter_fields( # noqa: C901
92
This will not perform a deep copy; values of the original item will be referenced
93
in the return item.
94
"""
95
- print("filter_fields called with:")
96
- print(" item:", item.keys() if hasattr(item, "keys") else item)
97
- print(" include:", include)
98
- print(" exclude:", exclude)
99
-
100
if not include and not exclude:
101
- print(" No include or exclude, returning original item")
102
return item
103
104
# Build a shallow copy of included fields on an item, or a sub-tree of an item
0 commit comments