Skip to content

Commit 07c75ee

Browse files
authored
fix: missing await in async create_client (#859)
1 parent e437159 commit 07c75ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: supabase/_async/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,6 @@ async def create_client(
333333
-------
334334
Client
335335
"""
336-
return AsyncClient.create(
336+
return await AsyncClient.create(
337337
supabase_url=supabase_url, supabase_key=supabase_key, options=options
338338
)

0 commit comments

Comments
 (0)