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

9 lines
198 B
Python

from argparse import Namespace
from chromy.chroma_functions import count_collection
def handle_count_collection(args: Namespace) -> int:
print(count_collection(args.collection))
return 0