Files
Chromy/chromy/handlers/list_collections.py
T
2026-04-22 15:47:46 +02:00

15 lines
338 B
Python

from argparse import Namespace
from chromy.chroma_functions import list_collections
from chromy.utilities import print_lines
def handle_list_collections(_: Namespace) -> int:
collections = list_collections()
if not collections:
print("No collections found.")
return 0
print_lines(collections)
return 0