diff options
| author | Max Audron <audron@cocaine.farm> | 2022-06-07 12:28:18 +0200 |
|---|---|---|
| committer | Maximilian Manz <maximilian.manz@de.clara.net> | 2022-06-20 11:33:04 +0200 |
| commit | 6f3b66719e2375e620c1d9fd4a460e7e4ea23120 (patch) | |
| tree | c463ec1bbce9fc5b33f733506d17bfa296c42918 /src/sync/mod.rs | |
| parent | move to mostly sync architecture (diff) | |
fix clippy lints
Diffstat (limited to 'src/sync/mod.rs')
| -rw-r--r-- | src/sync/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sync/mod.rs b/src/sync/mod.rs index 271f672..6cf1f7f 100644 --- a/src/sync/mod.rs +++ b/src/sync/mod.rs @@ -4,7 +4,7 @@ use crate::repo::{Repo, RepoError, Repos}; impl crate::GTree { pub fn sync(&self, repos: Repos) { - for (name, repo) in repos { + for (_name, repo) in repos { let mut repo = repo.write().unwrap(); match repo.sync() { |
