Skip to content

Commit

Permalink
fix in delete fgs
Browse files Browse the repository at this point in the history
  • Loading branch information
XaviPeiro committed Sep 4, 2024
1 parent 3b82842 commit 62f4266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai_engine_sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ async def delete_function_group(self, function_group_id: str):
api_base_url=self._api_base_url,
api_key=self._api_key,
method='DELETE',
endpoint=f"/v1beta1/function-groups/{function_group_id}/functions/",
endpoint=f"/v1beta1/function-groups/{function_group_id}/",
)
logger.debug(f"Function group deleted: {function_group_id}")
raw_response: dict = await make_api_request(
Expand Down

0 comments on commit 62f4266

Please sign in to comment.