Skip to content

docstrings - fix typos #91

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

Merged
merged 1 commit into from
Dec 10, 2021
Merged
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
6 changes: 3 additions & 3 deletions supabase/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async def _close_subscription(self, subscription):
await self._closeChannel(subscription)

def get_subscriptions(self):
"""Return all channels the the client is subscribed to."""
"""Return all channels the client is subscribed to."""
return self.realtime.channels

@staticmethod
Expand Down Expand Up @@ -197,7 +197,7 @@ def _get_auth_headers(self) -> Dict[str, str]:


def create_client(supabase_url: str, supabase_key: str, **options) -> Client:
"""Create client function to instanciate supabase client like JS runtime.
"""Create client function to instantiate supabase client like JS runtime.

Parameters
----------
Expand All @@ -211,7 +211,7 @@ def create_client(supabase_url: str, supabase_key: str, **options) -> Client:

Examples
--------
Instanciating the client.
Instantiating the client.
>>> import os
>>> from supabase import create_client, Client
>>>
Expand Down