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/update | |
| parent | move to mostly sync architecture (diff) | |
fix clippy lints
Diffstat (limited to 'src/update')
| -rw-r--r-- | src/update/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/update/mod.rs b/src/update/mod.rs index 609b35e..d2d6494 100644 --- a/src/update/mod.rs +++ b/src/update/mod.rs @@ -7,7 +7,7 @@ use crate::repo::{Repo, RepoError, Repos}; impl crate::GTree { pub fn update(&self, repos: Repos) { - for (name, repo) in repos { + for (_name, repo) in repos { let mut repo = repo.write().unwrap(); if repo.repo.is_some() { |
