Skip to content

Commit c7c4554

Browse files
Prefer .into()
1 parent 7c30c8d commit c7c4554

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub(super) fn weave_time_channel_rows(
161161
woven.push(ChannelConfig {
162162
name,
163163
description: "[time]".into(),
164-
data_type: ChannelDataType::Int64 as i32,
164+
data_type: ChannelDataType::Int64.into(),
165165
..Default::default()
166166
});
167167
}

0 commit comments

Comments
 (0)