Skip to content

Commit

Permalink
fix: channel error typing
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed May 29, 2024
1 parent defabce commit 65709b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/derive/src/types/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl Channel {
(0..=self.last_frame_number).try_for_each(|i| {
let frame = self.inputs.get(&i).ok_or_else(|| anyhow!("Frame not found"))?;
data.extend_from_slice(&frame.data);
Ok(())
Ok::<(), anyhow::Error>(())
})?;
Ok(data.into())
}
Expand Down

0 comments on commit 65709b8

Please sign in to comment.