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 339fb59 commit d3ee089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion supabase_auth/_sync/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@ def __init__(
headers: Dict[str, str],
cookie_options: CookieOptions,
http_client: Optional[SyncClient] = None,
verify: bool = True,
) -> None:
"""Initialise API class."""
self.url = url
self.headers = headers
self.cookie_options = cookie_options
self.http_client = http_client or SyncClient()
self.http_client = http_client or SyncClient(verify=bool(verify))

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

0 comments on commit d3ee089

Please sign in to comment.