We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c213903 commit 0b4fae1Copy full SHA for 0b4fae1
1 file changed
src/main.rs
@@ -268,9 +268,7 @@ fn generate_payload(args: &mut Args) -> Result<PayloadBuffer> {
268
let frame_count = frames.len();
269
let (width, height) = frames.first().unwrap().buffer().dimensions();
270
if height != DISPLAY_HEIGHT || width != DISPLAY_WIDTH {
271
- anyhow::bail!(
272
- "Expected {DISPLAY_WIDTH}x{DISPLAY_WIDTH} pixel gif file"
273
- );
+ anyhow::bail!("Expected {DISPLAY_WIDTH}x{DISPLAY_WIDTH} pixel gif file");
274
}
275
276
let mut buffer = payload.add_message(
0 commit comments