Skip to content

Commit 2d1c71b

Browse files
committed
[chore] cargo fmt changes
1 parent 92a17d0 commit 2d1c71b

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/chunked/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ fn column_length_num_rightaligned(data: &[u8], runes: i16) -> (usize, usize) {
175175
Some(b) => *b,
176176
};
177177

178-
if let 48..=57 = bb { return (start, stop) }
178+
if let 48..=57 = bb {
179+
return (start, stop);
180+
}
179181

180182
start += 1;
181183
counted_runes += 1;

src/cli.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -310,11 +310,8 @@ impl Cli {
310310
}
311311
};
312312

313-
let stats = slicer_instance.slice_and_convert(
314-
converter_instance,
315-
_in_file,
316-
n_threads,
317-
)?;
313+
let stats =
314+
slicer_instance.slice_and_convert(converter_instance, _in_file, n_threads)?;
318315

319316
info!(
320317
"Operation successful inbytes={} out bytes={} num of rows={}",

0 commit comments

Comments
 (0)