def check_existing_accounts(account_name): return Account.find_account(account_name)
def find_account(account_name): ''' Function that finds a account by number and returns the account ''' return Account.find_account(account_name)