Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 339fb59

Browse files
Fix #320
1 parent 05d9fe9 commit 339fb59

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

supabase_auth/_async/gotrue_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,14 @@ def __init__(
8989
storage: Union[AsyncSupportedStorage, None] = None,
9090
http_client: Union[AsyncClient, None] = None,
9191
flow_type: AuthFlowType = "implicit",
92+
verify: bool = True,
9293
) -> None:
9394
AsyncGoTrueBaseAPI.__init__(
9495
self,
9596
url=url or GOTRUE_URL,
9697
headers=headers or DEFAULT_HEADERS,
9798
http_client=http_client,
99+
verify=verify,
98100
)
99101
self._storage_key = storage_key or STORAGE_KEY
100102
self._auto_refresh_token = auto_refresh_token

0 commit comments

Comments
 (0)