From fb010bbcfb65234d94a10e030e8af60098a93e03 Mon Sep 17 00:00:00 2001 From: Nikolay Sheyko Date: Fri, 18 Apr 2025 04:06:06 +0700 Subject: [PATCH] fix: wrong default comment for responseType --- supabase_functions/_async/functions_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase_functions/_async/functions_client.py b/supabase_functions/_async/functions_client.py index ba12dbb..97f039a 100644 --- a/supabase_functions/_async/functions_client.py +++ b/supabase_functions/_async/functions_client.py @@ -91,7 +91,7 @@ async def invoke( invoke_options : object with the following properties `headers`: object representing the headers to send with the request `body`: the body of the request - `responseType`: how the response should be parsed. The default is `json` + `responseType`: how the response should be parsed. The default is `text/plain` """ if not is_valid_str_arg(function_name): raise ValueError("function_name must a valid string value.")