示例#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
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)