refactor(mapping): change attr for get_parent_task_ids to task
This commit is contained in:
parent
af2805d793
commit
a6961cb19a
@ -49,13 +49,14 @@ def get_task_status(task):
|
||||
completed_at = ''
|
||||
return status, completed_at
|
||||
|
||||
|
||||
# здесь функция для дальнейшей работы с parent
|
||||
def get_parent_task_ids(data, ya_imported_task_response):
|
||||
def get_parent_task_ids(task, ya_imported_task_response):
|
||||
""" Получение соответствий между идентификаторами подзадач в Асане и Яндекс Трекере """
|
||||
|
||||
parent_task_ids = {}
|
||||
|
||||
for task in data["data"]:
|
||||
# for task in data["data"]:
|
||||
if task.get('parent') and 'gid' in task['parent']:
|
||||
parent_gid = task['parent']['gid']
|
||||
if parent_gid in ya_imported_task_response:
|
||||
|
Loading…
Reference in New Issue
Block a user