From c1741505e0a4839ba057c2704fbfdbf6b4c78c46 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Tue, 6 May 2025 22:56:07 +0200 Subject: [PATCH] Remove bool cast of verify arg in `SyncFunctionsClient` Closes #202 --- supabase_functions/_sync/functions_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase_functions/_sync/functions_client.py b/supabase_functions/_sync/functions_client.py index d8a410f..769eec0 100644 --- a/supabase_functions/_sync/functions_client.py +++ b/supabase_functions/_sync/functions_client.py @@ -33,7 +33,7 @@ def __init__( self._client = SyncClient( base_url=self.url, headers=self.headers, - verify=bool(verify), + verify=verify, timeout=int(abs(timeout)), proxy=proxy, follow_redirects=True,