aboutsummaryrefslogtreecommitdiff
path: root/src/repo
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2022-06-07 12:28:18 +0200
committerMaximilian Manz <maximilian.manz@de.clara.net>2022-06-20 11:33:04 +0200
commit6f3b66719e2375e620c1d9fd4a460e7e4ea23120 (patch)
treec463ec1bbce9fc5b33f733506d17bfa296c42918 /src/repo
parentmove to mostly sync architecture (diff)
fix clippy lints
Diffstat (limited to 'src/repo')
-rw-r--r--src/repo/aggregate.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/repo/aggregate.rs b/src/repo/aggregate.rs
index 0d9573c..d5a59ba 100644
--- a/src/repo/aggregate.rs
+++ b/src/repo/aggregate.rs
@@ -80,7 +80,7 @@ impl Aggregator for Repos {
}
}
- return repos;
+ repos
}
#[tracing::instrument(level = "trace")]
@@ -116,6 +116,6 @@ impl Aggregator for Repos {
local.extend(remote.into_iter());
// local.sort();
- return local;
+ local
}
}