Files
Chromy/chromy/handlers/count_collection.py
T
Matteo Rosati a14edebafe
build / build (push) Successful in 12s
pytest / pytest (push) Successful in 29s
add colors!
2026-04-23 21:49:46 +02:00

10 lines
220 B
Python

from __future__ import annotations
from rich import print
from chromy.chroma_functions import count_collection
def handle_count_collection(collection: str) -> int:
print(count_collection(collection))
return 0