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

Commit 2940262

Browse files
Fix #320
1 parent cf2f9be commit 2940262

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

supabase_auth/_sync/gotrue_admin_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ def __init__(
2929
url: str = "",
3030
headers: Dict[str, str] = {},
3131
http_client: Union[SyncClient, None] = None,
32+
verify: bool = True,
3233
) -> None:
3334
SyncGoTrueBaseAPI.__init__(
3435
self,
3536
url=url,
3637
headers=headers,
3738
http_client=http_client,
39+
verify=verify,
3840
)
3941
self.mfa = SyncGoTrueAdminMFAAPI()
4042
self.mfa.list_factors = self._list_factors

0 commit comments

Comments
 (0)