Skip to content

Commit c174150

Browse files
authored
Remove bool cast of verify arg in SyncFunctionsClient
Closes supabase#202
1 parent 2675964 commit c174150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supabase_functions/_sync/functions_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(
3333
self._client = SyncClient(
3434
base_url=self.url,
3535
headers=self.headers,
36-
verify=bool(verify),
36+
verify=verify,
3737
timeout=int(abs(timeout)),
3838
proxy=proxy,
3939
follow_redirects=True,

0 commit comments

Comments
 (0)