From 1f080a008b4302787db43f97463a0563ce1b3328 Mon Sep 17 00:00:00 2001 From: Andrew Brain Date: Tue, 7 Jan 2025 19:34:12 -0600 Subject: [PATCH] return 0 from populate repo_src_id to fix sum error --- augur/tasks/github/util/populate_repo_src_id.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/augur/tasks/github/util/populate_repo_src_id.py b/augur/tasks/github/util/populate_repo_src_id.py index e4aad54ab4..4346bcc3dd 100644 --- a/augur/tasks/github/util/populate_repo_src_id.py +++ b/augur/tasks/github/util/populate_repo_src_id.py @@ -18,7 +18,8 @@ def populate_repo_src_id_task(repo_git): repo_src_id = get_repo_src_id(owner, repo, logger) update_repo_src_id(repo_id, repo_src_id) - + + return 0 def update_repo_src_id(repo_id, repo_src_id):