Skip to content

Commit 6895b84

Browse files
committed
chore: make clippy happy
Signed-off-by: Alexandre Milesi <[email protected]>
1 parent 4670ab9 commit 6895b84

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/llm/src/preprocessor/media/decoders.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ pub use image::ImageDecoder;
1212
// Decoded media data (image RGB, video frames pixels, ...)
1313
#[derive(Debug)]
1414
pub struct DecodedMediaData {
15+
#[allow(dead_code)] // used in followup MR
1516
pub(crate) data: Vec<u8>,
17+
#[allow(dead_code)] // used in followup MR
1618
pub(crate) shape: Vec<usize>,
19+
#[allow(dead_code)] // used in followup MR
1720
pub(crate) dtype: String,
1821
}
1922

0 commit comments

Comments
 (0)