def process_verify_result()

in customizations/AccountFactory/EnrollAccount/enroll_account.py [0:0]


def process_verify_result(result):
    '''Check for error count and return the result'''

    for account in result:
        print()
        for value in account.values():
            err_details = value['ErrDetails']
            if len(err_details) >= 1:
                for err in err_details:
                    err = err.split(sep=':')
                    print(HIGHLIGHT + err[0] + RESET_STYLE, ":".join(err[1:]))