Skip to content

Commit

Permalink
fix: missing await in async create_client (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
realChesta authored Jul 16, 2024
1 parent e437159 commit 07c75ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supabase/_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,6 @@ async def create_client(
-------
Client
"""
return AsyncClient.create(
return await AsyncClient.create(
supabase_url=supabase_url, supabase_key=supabase_key, options=options
)

0 comments on commit 07c75ee

Please sign in to comment.