Skip to content

Commit

Permalink
CHORE: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sander-willems-bruker committed Jun 14, 2024
1 parent 1b817de commit 17d2cf8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/file_readers/common/sql_reader/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn read_tof_max_index(connection: &Connection) -> u32 {
|row| row.get(0),
)
.unwrap();
let mut tof_max_index: u32 = tof_max_index_string.parse().unwrap();
let tof_max_index: u32 = tof_max_index_string.parse().unwrap();
tof_max_index
}

Expand Down
1 change: 0 additions & 1 deletion src/file_readers/file_formats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::{fs, path::PathBuf};
use crate::{io::readers::frame_reader::FrameReader, ms_data::Frame};
use rayon::iter::ParallelIterator;

use super::common::sql_reader::SqlReader;
pub enum FileFormat {
DFolder(PathBuf),
MS2Folder(PathBuf),
Expand Down
3 changes: 2 additions & 1 deletion src/io/readers.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pub(crate) mod file_readers;
// pub(crate) mod file_readers;
pub mod file_readers;
pub mod frame_reader;

0 comments on commit 17d2cf8

Please sign in to comment.