Skip to content

Commit 314c031

Browse files
committed
code format
1 parent 36e4a04 commit 314c031

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

supabase/_async/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
AsyncRPCFilterRequestBuilder,
1111
)
1212
from postgrest.constants import DEFAULT_POSTGREST_CLIENT_TIMEOUT
13-
from realtime.client import RealtimeClient
1413
from realtime.channel import Channel, RealtimeChannelOptions
14+
from realtime.client import RealtimeClient
1515
from storage3 import AsyncStorageClient
1616
from storage3.constants import DEFAULT_TIMEOUT as DEFAULT_STORAGE_CLIENT_TIMEOUT
1717
from supafunc import AsyncFunctionsClient
@@ -206,7 +206,7 @@ def channel(self, topic: str, params: RealtimeChannelOptions = {}) -> Channel:
206206
def get_channels(self) -> List[Channel]:
207207
"""Return all channels the client is subscribed to."""
208208
return self.realtime.get_channels()
209-
209+
210210
async def remove_channel(self, channel: Channel) -> None:
211211
"""Remove a channel from the client."""
212212
await self.realtime.remove_channel(channel)

0 commit comments

Comments
 (0)