예제 #1
0
def update_folder(account_id, category_id, args):
    old_name = args['old_name']
    remote_update_folder(account_id, category_id, old_name)
예제 #2
0
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)
예제 #3
0
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)
예제 #4
0
파일: base.py 프로젝트: busseyl/sync-engine
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)
예제 #5
0
파일: base.py 프로젝트: gisho/sync-engine
def update_folder(account_id, category_id, args):
    old_name = args['old_name']
    remote_update_folder(account_id, category_id, old_name)