refactor: improve code formatting in mod.rs and logger.rs

This commit is contained in:
ttyS3 2024-12-02 12:50:46 +00:00 committed by João Marcos
parent 77b01d170f
commit e1d7f1424a
2 changed files with 4 additions and 3 deletions

View File

@ -53,7 +53,6 @@ pub fn run(
question_policy: QuestionPolicy,
file_visibility_policy: FileVisibilityPolicy,
) -> crate::Result<()> {
if let Some(threads) = args.threads {
rayon::ThreadPoolBuilder::new()
.num_threads(threads)

View File

@ -1,5 +1,7 @@
use std::sync::{mpsc, Arc, Barrier, OnceLock};
use std::thread;
use std::{
sync::{mpsc, Arc, Barrier, OnceLock},
thread,
};
pub use logger_thread::spawn_logger_thread;