diff --git a/techtree-manager/src/main.rs b/techtree-manager/src/main.rs index d5933ce..6dfe71f 100644 --- a/techtree-manager/src/main.rs +++ b/techtree-manager/src/main.rs @@ -66,9 +66,14 @@ async fn run() -> anyhow::Result<()> { "## ); log::info!("Updating the wiki overview..."); - wiki::update_wiki_overview(&forgejo, &meta.issue.repository, timestamp.to_string(), wiki_text) - .await - .context("Failed to update the techtree wiki page")?; + wiki::update_wiki_overview( + &forgejo, + &meta.issue.repository, + timestamp.to_string(), + wiki_text, + ) + .await + .context("Failed to update the techtree wiki page")?; 'issues: for issue in tree.iter_issues() { let subtree = tree.subtree_for_issue(issue).unwrap();