Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlospaco committed May 28, 2024
1 parent e6203f6 commit e3862b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion supabase_auth/_sync/gotrue_base_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ def __init__(
url: str,
headers: Dict[str, str],
http_client: Union[SyncClient, None],
verify: bool = True,
):
self._url = url
self._headers = headers
self._http_client = http_client or SyncClient()
self._http_client = http_client or SyncClient(verify=bool(verify))

def __enter__(self) -> Self:
return self
Expand Down

0 comments on commit e3862b9

Please sign in to comment.