Skip to content

Commit

Permalink
Include authors information
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompa committed Dec 11, 2024
1 parent 2e6d359 commit 4409914
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tasks_data_retrieval/create_tasks_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def _get_task_type(
data = get_package_info(source)
pkg_name = data["name"]
pkg_version = data.get("version")
authors = data["manifest"].get("authors")
pkg_task_list = data["manifest"]["task_list"]
for task in pkg_task_list:
new_task = dict()
Expand All @@ -234,6 +235,7 @@ def _get_task_type(
)
new_task["version"] = pkg_version
new_task["type"] = _get_task_type(task)
new_task["authors"] = authors
TaskReadV2(**new_task)
task_list.append(new_task)

Expand Down

0 comments on commit 4409914

Please sign in to comment.