Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 579f499

Browse files
authoredAug 16, 2024··
fix: remove old SupabaseRealtimeClient import (#896)
1 parent 4392970 commit 579f499

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed
 

‎supabase/_async/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def __init__(
8686
supabase_key=self.supabase_key,
8787
options=options.realtime if options else None,
8888
)
89-
self.realtime = None
9089
self._postgrest = None
9190
self._storage = None
9291
self._functions = None

‎supabase/_sync/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def __init__(
8686
supabase_key=self.supabase_key,
8787
options=options.realtime if options else None,
8888
)
89-
self.realtime = None
9089
self._postgrest = None
9190
self._storage = None
9291
self._functions = None

‎supabase/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
# Lib
1818
from .lib.client_options import ClientOptions
19-
from .lib.realtime_client import SupabaseRealtimeClient
2019

2120
# Version
2221
from .version import __version__
@@ -31,7 +30,6 @@
3130
"Client",
3231
"ClientOptions",
3332
"SupabaseStorageClient",
34-
"SupabaseRealtimeClient",
3533
"PostgrestAPIError",
3634
"PostgrestAPIResponse",
3735
"StorageException",

0 commit comments

Comments
 (0)
Please sign in to comment.