Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove old SupabaseRealtimeClient import #896

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion supabase/_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def __init__(
supabase_key=self.supabase_key,
options=options.realtime if options else None,
)
self.realtime = None
self._postgrest = None
self._storage = None
self._functions = None
Expand Down
1 change: 0 additions & 1 deletion supabase/_sync/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def __init__(
supabase_key=self.supabase_key,
options=options.realtime if options else None,
)
self.realtime = None
self._postgrest = None
self._storage = None
self._functions = None
Expand Down
2 changes: 0 additions & 2 deletions supabase/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

# Lib
from .lib.client_options import ClientOptions
from .lib.realtime_client import SupabaseRealtimeClient

# Version
from .version import __version__
Expand All @@ -31,7 +30,6 @@
"Client",
"ClientOptions",
"SupabaseStorageClient",
"SupabaseRealtimeClient",
"PostgrestAPIError",
"PostgrestAPIResponse",
"StorageException",
Expand Down
Loading