Skip to content

Commit

Permalink
don't need 'static on F::Output [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Apr 5, 2024
1 parent f021507 commit 5f15d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-io/src/pl_async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ impl RuntimeManager {
pub fn block_on_potential_spawn<F>(&'static self, future: F) -> F::Output
where
F: Future + Send,
F::Output: Send + 'static,
F::Output: Send,
{
let rayon_idx = POOL.current_thread_index();

Expand Down

0 comments on commit 5f15d0b

Please sign in to comment.