fix: clippy needless_return in dispatch dependency handler
Author: Aaron Steven White
Commit
cdcfb44f2a4ef2fcd7014c2b62995646c07178e6Parent: cd8431f6fb
Structural diff unavailable
These commits were pushed via plain git push, so no pre-parsed
schemas are available. Install git-remote-cospan and re-push via panproto:// to
see scope-level changes, breaking change detection, and semantic diffs.
brew install panproto/tap/git-remote-cospan1 file changed +1 -1
@@ -92,7 +92,7 @@ pub async fn dispatch_simple_upsert(
9292 db::repo::ensure_exists(&state.db, &row.source_repo_did, &row.source_repo_name, "cospan").await?; 9393 db::repo::ensure_exists(&state.db, &row.target_repo_did, &row.target_repo_name, "cospan").await?; 9494 db::dependency::upsert(&state.db, &row).await?; 95- return Ok(true); 95+ Ok(true) 9696 } 9797 9898 // ─── sh.tangled simple records (same DB tables) ─────────────