Diffstat (limited to 'src/effect.rs')
-rw-r--r--src/effect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effect.rs b/src/effect.rs
index 6e50862..14c13c2 100644
--- a/src/effect.rs
+++ b/src/effect.rs
@@ -3,7 +3,7 @@ pub mod blocking;
use core::{future::Future, ops::ControlFlow};
-use crate::{higher_ranked_trait, higher_ranked_type, hkt::Marker, never::Never};
+use crate::never::Never;
// Goal: code using the module shouldn't care if the underlying environment is async or not.
// That is the API should allow yielding without forcing it.