Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-cantor committed Oct 10, 2023
1 parent 52f8dd4 commit af8bd36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sea-streamer-runtime/src/timeout/no_rt_timeout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{future::Future, time::Duration};
#[derive(Debug)]
pub struct TimeoutError;

pub async fn timeout<F, T>(_: Duration, _: F) -> Result<T, TimeoutError>
pub async fn timeout<F, T>(_: Duration, _f: F) -> Result<T, TimeoutError>
where
F: Future<Output = T>,
{
Expand Down

0 comments on commit af8bd36

Please sign in to comment.