removed lint

This commit is contained in:
epi
2021-02-03 10:25:55 -06:00
parent dfa60099c3
commit 3a1a1fcd0a
2 changed files with 2 additions and 2 deletions

View File

@@ -233,7 +233,7 @@ impl HeuristicTests {
OutputLevel::Default | OutputLevel::Quiet
) {
ferox_print(
&format!("Could not connect to {}, skipping... (try turning on warnings with -v)", target_url),
&format!("Could not connect to {}, skipping...", target_url),
&PROGRESS_PRINTER,
);
}

View File

@@ -45,7 +45,7 @@ pub fn add_bar(prefix: &str, length: u64, bar_type: BarType) -> ProgressBar {
style.template("[{bar:.yellow/blue}] - {elapsed:<4} {pos:>7}/{len:7} {eta:7} {msg}")
}
BarType::Quiet => style.template("Scanning: {prefix}"),
}; // todo update README with silent/quiet stuff
};
let progress_bar = PROGRESS_BAR.add(ProgressBar::new(length));