Files
Chromy/handlers/delete_collection.py
T

10 lines
241 B
Python
Raw Normal View History

2026-04-21 17:42:37 +02:00
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