Skip to content

Commit

Permalink
fix bad copy paste for configs
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Oct 22, 2024
1 parent 019bd49 commit 7509475
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions bin/src/modules/rapifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ use crate::{context::Context, error::Error, progress::progress_bar, report::Repo

use super::Module;

// type RapifyResult = (Vec<(String, Vec<Annotation>)>, Result<(), Error>);

#[derive(Default)]
pub struct Rapifier;

Expand Down Expand Up @@ -68,8 +66,7 @@ impl Module for Rapifier {
})
.collect::<Result<Vec<_>, Error>>()?;

let progress =
progress_bar(ctx.addons().to_vec().len() as u64).with_message("Rapifying Configs");
let progress = progress_bar(entries.len() as u64).with_message("Rapifying Configs");
let reports = entries
.par_iter()
.map(|(addon, entry)| {
Expand Down

0 comments on commit 7509475

Please sign in to comment.