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

Commit 4a18e21

Browse files
Fix code style
1 parent 55a415b commit 4a18e21

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

supabase_auth/_sync/api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ def __init__(
3232
self.url = url
3333
self.headers = headers
3434
self.cookie_options = cookie_options
35-
self.http_client = http_client or SyncClient(verify=bool(verify), follow_redirects=True)
35+
self.http_client = http_client or SyncClient(
36+
verify=bool(verify), follow_redirects=True
37+
)
3638

3739
def __enter__(self) -> SyncGoTrueAPI:
3840
return self

0 commit comments

Comments
 (0)