Skip to content

Commit

Permalink
remove more redundant imports
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus-consoli committed Mar 21, 2024
1 parent f1a64d1 commit 8ef8cd0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/concurrent_stream/for_each.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ mod test {
use super::*;
use crate::prelude::*;
use futures_lite::stream;
use std::sync::Arc;

#[test]
fn concurrency_one() {
Expand Down
2 changes: 1 addition & 1 deletion src/concurrent_stream/try_for_each.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ mod test {
use super::*;
use crate::prelude::*;
use futures_lite::stream;
use std::{io, sync::Arc};
use std::io;

#[test]
fn concurrency_one() {
Expand Down

0 comments on commit 8ef8cd0

Please sign in to comment.