Skip to content

Commit 4409914

Browse files
committed
Include authors information
1 parent 2e6d359 commit 4409914

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tasks_data_retrieval/create_tasks_data.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ def _get_task_type(
225225
data = get_package_info(source)
226226
pkg_name = data["name"]
227227
pkg_version = data.get("version")
228+
authors = data["manifest"].get("authors")
228229
pkg_task_list = data["manifest"]["task_list"]
229230
for task in pkg_task_list:
230231
new_task = dict()
@@ -234,6 +235,7 @@ def _get_task_type(
234235
)
235236
new_task["version"] = pkg_version
236237
new_task["type"] = _get_task_type(task)
238+
new_task["authors"] = authors
237239
TaskReadV2(**new_task)
238240
task_list.append(new_task)
239241

0 commit comments

Comments
 (0)