]> git.proxmox.com Git - proxmox-backup.git/commitdiff
cargo fmt
authorFabian Grünbichler <f.gruenbichler@proxmox.com>
Thu, 21 Jul 2022 11:48:43 +0000 (13:48 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Mon, 25 Jul 2022 08:03:44 +0000 (10:03 +0200)
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
src/api2/node/apt.rs

index 2a2029ef0df3bf29611f0f0ffb9e2a7d4053b9c8..97e05dec415f2df9c8c0efd26e36e3b8d57508e3 100644 (file)
@@ -554,7 +554,10 @@ pub fn add_repository(handle: APTRepositoryHandle, digest: Option<String>) -> Re
         );
     }
 
-    if let Some(file) = files.iter_mut().find(|file| file.path.as_ref() == Some(&path)) {
+    if let Some(file) = files
+        .iter_mut()
+        .find(|file| file.path.as_ref() == Some(&path))
+    {
         file.repositories.push(repo);
 
         file.write()?;
@@ -622,7 +625,10 @@ pub fn change_repository(
         bail!("unable to parse file {} - {}", error.path, error.error);
     }
 
-    if let Some(file) = files.iter_mut().find(|file| file.path.as_ref() == Some(&path)) {
+    if let Some(file) = files
+        .iter_mut()
+        .find(|file| file.path.as_ref() == Some(&path))
+    {
         if let Some(repo) = file.repositories.get_mut(index) {
             if let Some(enabled) = enabled {
                 repo.set_enabled(enabled);