9 lines
191 B
Python
9 lines
191 B
Python
from argparse import Namespace
|
|
|
|
from chroma_functions import count_collection
|
|
|
|
|
|
def handle_count_collection(args: Namespace) -> int:
|
|
print(count_collection(args.collection))
|
|
return 0
|