fix(mapping_parent): fix the way(arr) to call the parent func

This commit is contained in:
Angelina Tingaeva 2023-12-06 13:14:24 +05:00
parent a6961cb19a
commit 10eadc8a95

View File

@ -143,7 +143,7 @@ def create_tasks_in_tracker(data):
logger.debug('Response: %s', response.content) logger.debug('Response: %s', response.content)
# вот здесь тоже про родительскую задачу добавлено # вот здесь тоже про родительскую задачу добавлено
parent_task_ids = get_parent_task_ids(data, ya_imported_task_response) parent_task_ids = get_parent_task_ids(task, ya_imported_task_response)
for gid, parent_id in parent_task_ids.items(): for gid, parent_id in parent_task_ids.items():
assign_parent_task(gid, parent_id) assign_parent_task(gid, parent_id)