Skip to content

Commit

Permalink
Silence a clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Nov 2, 2022
1 parent aac5bc7 commit de1ae6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build/util_mod.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl<T, E> ResponseStream<T, E>
\{
while let Some(r) = self.0.next().await \{
let chunk = r.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
writer.write(chunk.as_ref()).await?;
let _ = writer.write(chunk.as_ref()).await?;
}
Ok(())
Expand Down

0 comments on commit de1ae6a

Please sign in to comment.