complete refactor
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
from argparse import Namespace
|
||||
|
||||
from chroma_functions import list_collections
|
||||
from 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
|
||||
Reference in New Issue
Block a user