Files
Chromy/handlers/delete_collection.py
T
2026-04-21 17:42:37 +02:00

10 lines
241 B
Python

from argparse import Namespace
from chroma_functions import delete_collection
def handle_delete_collection(args: Namespace) -> int:
delete_collection(args.collection)
print(f"Deleted collection '{args.collection}'.")
return 0