We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e73d5 commit f389e77Copy full SHA for f389e77
supabase/lib/auth_client.py
@@ -3,7 +3,12 @@
3
from gotrue import SyncGoTrueClient, SyncMemoryStorage, SyncSupportedStorage
4
5
# TODO - export this from GoTrue-py in next release
6
-from httpx import SyncClient
+from httpx import Client as BaseClient
7
+
8
9
+class SyncClient(BaseClient):
10
+ def aclose(self) -> None:
11
+ self.close()
12
13
14
class SupabaseAuthClient(SyncGoTrueClient):
0 commit comments