Skip to content

Commit 787eb8e

Browse files
cleanup
1 parent 6f36c35 commit 787eb8e

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

rust/crates/sift_cli/src/cmd/import/hdf5/detect_hdf5_schema.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,7 @@ pub fn detect_config(
131131
&datasets, schema, time_index, time_field, time_name,
132132
)),
133133
Ok((data, channel_configs)) => {
134-
let woven = if matches!(schema, Hdf5Schema::TwoD) {
135-
channel_configs
136-
} else {
137-
weave_time_channel_rows(&data, &channel_configs)
138-
};
134+
let woven = weave_time_channel_rows(&data, &channel_configs);
139135
Ok((data, woven))
140136
}
141137
Err(e) => Err(e),

0 commit comments

Comments
 (0)