From 62e73d55f264b5bfd04e7281a7b3154d23c27dfa Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Sun, 5 Feb 2023 23:13:12 +0800 Subject: [PATCH] chore: fix import --- supabase/lib/auth_client.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/supabase/lib/auth_client.py b/supabase/lib/auth_client.py index f9e1479b..91ae65d1 100644 --- a/supabase/lib/auth_client.py +++ b/supabase/lib/auth_client.py @@ -1,6 +1,9 @@ from typing import Dict, Union -from gotrue import SyncClient, SyncGoTrueClient, SyncMemoryStorage, SyncSupportedStorage +from gotrue import SyncGoTrueClient, SyncMemoryStorage, SyncSupportedStorage + +# TODO - export this from GoTrue-py in next release +from httpx import SyncClient class SupabaseAuthClient(SyncGoTrueClient):