Nathan Chau
Results
1
comments of
Nathan Chau
Have you already tried something like this? ```python def checkAuthor(author): res = cv.collection.get_rows(search=author) if not res: #handle empty result return None else: #if you're only expecting one result, just key...