mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
refac
This commit is contained in:
parent
2be14d57bf
commit
9bd054490f
@ -176,4 +176,8 @@ async def delete_toolkit_by_id(request: Request, id: str, user=Depends(get_admin
|
|||||||
if id in TOOLS:
|
if id in TOOLS:
|
||||||
del TOOLS[id]
|
del TOOLS[id]
|
||||||
|
|
||||||
|
# delete the toolkit file
|
||||||
|
toolkit_path = os.path.join(TOOLS_DIR, f"{id}.py")
|
||||||
|
os.remove(toolkit_path)
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
Loading…
Reference in New Issue
Block a user