Skip to content

Commit 5d04c4c

Browse files
fix: Export Core Supabase Classes and Functions Explicitly via __all__ (#691)
Co-authored-by: Andrew Smith <[email protected]>
1 parent c881898 commit 5d04c4c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: supabase/__init__.py

+12
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,15 @@
99
from ._sync.client import SyncStorageClient as SupabaseStorageClient
1010
from ._sync.client import create_client
1111
from .lib.realtime_client import SupabaseRealtimeClient
12+
13+
__all__ = [
14+
"create_client",
15+
"Client",
16+
"SupabaseAuthClient",
17+
"SupabaseStorageClient",
18+
"SupabaseRealtimeClient",
19+
"PostgrestAPIError",
20+
"PostgrestAPIResponse",
21+
"StorageException",
22+
"__version__",
23+
]

0 commit comments

Comments
 (0)