Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlospaco committed Jun 3, 2024
1 parent 55a415b commit 4a18e21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion supabase_auth/_sync/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ def __init__(
self.url = url
self.headers = headers
self.cookie_options = cookie_options
self.http_client = http_client or SyncClient(verify=bool(verify), follow_redirects=True)
self.http_client = http_client or SyncClient(

Check warning on line 35 in supabase_auth/_sync/api.py

View check run for this annotation

Codecov / codecov/patch

supabase_auth/_sync/api.py#L35

Added line #L35 was not covered by tests
verify=bool(verify), follow_redirects=True
)

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

0 comments on commit 4a18e21

Please sign in to comment.