Skip to content

Commit

Permalink
cram/async/io/reader/crc_reader: Use std::task::ready
Browse files Browse the repository at this point in the history
  • Loading branch information
zaeleus committed Jun 14, 2024
1 parent a57b874 commit e3ee937
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions noodles-cram/src/async/io/reader/crc_reader.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
use std::{
pin::Pin,
task::{Context, Poll},
task::{ready, Context, Poll},
};

use flate2::Crc;
use futures::ready;
use pin_project_lite::pin_project;
use tokio::io::{self, AsyncRead, ReadBuf};

Expand Down

0 comments on commit e3ee937

Please sign in to comment.