ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[autofix.ci] apply automated fixes

authored by

autofix-ci[bot] and committed by
GitHub
ea0cfc68 7f90d7a2

+3 -5
+3 -5
crates/cli/src/apply.rs
··· 56 56 on: &[ApplyTarget], 57 57 modifiers: &mut SubCommandModifiers, 58 58 ) -> Result<(HashSet<String>, HashSet<Name>)> { 59 - on.iter().try_fold( 60 - (HashSet::new(), HashSet::new()), 61 - |result, target| { 59 + on.iter() 60 + .try_fold((HashSet::new(), HashSet::new()), |result, target| { 62 61 let (mut tags, mut names) = result; 63 62 match target { 64 63 ApplyTarget::Tag(tag) => { ··· 75 74 } 76 75 } 77 76 Ok((tags, names)) 78 - }, 79 - ) 77 + }) 80 78 } 81 79 82 80 fn partition_arr<T>(arr: Vec<T>, partition: &Partitions) -> Vec<T>