From 4a18e212fd5f9b9f25e516735ab92232bf49e5d7 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 3 Jun 2024 19:49:38 -0300 Subject: [PATCH] Fix code style --- supabase_auth/_sync/api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/supabase_auth/_sync/api.py b/supabase_auth/_sync/api.py index 5c9607df..3d8fca37 100644 --- a/supabase_auth/_sync/api.py +++ b/supabase_auth/_sync/api.py @@ -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( + verify=bool(verify), follow_redirects=True + ) def __enter__(self) -> SyncGoTrueAPI: return self