From 07f1ced74553cbf677f18388c099d118bb38c010 Mon Sep 17 00:00:00 2001 From: Vicki Cheung Date: Fri, 23 Aug 2024 14:46:40 -0700 Subject: [PATCH] fix: don't print all query responses (#33) --- python/retoolrpc/utils/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/retoolrpc/utils/api.py b/python/retoolrpc/utils/api.py index fdeee90..cec361f 100644 --- a/python/retoolrpc/utils/api.py +++ b/python/retoolrpc/utils/api.py @@ -112,7 +112,6 @@ async def post_query_response( "User-Agent": f"RetoolRPC/{__version__} (Python)", } async with httpx.AsyncClient() as client: - print(options) response = await client.post( url=f"{self._host_url}/api/v1/retoolrpc/postQueryResponse", headers=headers,