From 97adfdc4442f0069317fef0d80dec95c988179c0 Mon Sep 17 00:00:00 2001 From: hrodmn Date: Fri, 27 Sep 2024 06:59:19 -0500 Subject: [PATCH] drop print statement --- stac_fastapi/pgstac/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/stac_fastapi/pgstac/core.py b/stac_fastapi/pgstac/core.py index a7c322e..7ffa0a0 100644 --- a/stac_fastapi/pgstac/core.py +++ b/stac_fastapi/pgstac/core.py @@ -85,7 +85,6 @@ async def all_collections( # noqa: C901 # Do the request try: search_request = self.collections_get_request_model(**clean) - print(search_request) except ValidationError as e: raise HTTPException( status_code=400, detail=f"Invalid parameters provided {e}"