Skip to content

Commit

Permalink
fix: make rpc function sync (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
anand2312 committed Oct 17, 2023
1 parent 1209139 commit 04f4980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgrest/_async/client.py
Expand Up @@ -78,7 +78,7 @@ def from_table(self, table: str) -> AsyncRequestBuilder:
"""Alias to :meth:`from_`."""
return self.from_(table)

async def rpc(self, func: str, params: dict) -> AsyncRPCFilterRequestBuilder[Any]:
def rpc(self, func: str, params: dict) -> AsyncRPCFilterRequestBuilder[Any]:
"""Perform a stored procedure call.
Args:
Expand Down

0 comments on commit 04f4980

Please sign in to comment.