def update_folder(account_id, category_id, args): old_name = args['old_name'] remote_update_folder(account_id, category_id, old_name)
def update_folder(crispin_client, account_id, category_id, args): old_name = args['old_name'] remote_update_folder(crispin_client, account_id, category_id, old_name)
def update_folder(crispin_client, account_id, category_id, args): old_name = args["old_name"] new_name = args["new_name"] remote_update_folder(crispin_client, account_id, category_id, old_name, new_name)
def update_folder(crispin_client, account_id, category_id, args): old_name = args['old_name'] new_name = args['new_name'] remote_update_folder(crispin_client, account_id, category_id, old_name, new_name)