chore: run linter and fix formatting

This commit is contained in:
Anand Balakrishnan 2023-08-30 16:02:03 -07:00
parent 3b3a7ce15e
commit 73921db5f9
7 changed files with 8 additions and 6 deletions

View file

@ -235,7 +235,7 @@ fn compute_timed_eventually(signal: Signal<bool>, a: Duration, b: Option<Duratio
)
}
}
Signal::try_from_iter(ret_vals.into_iter())
Signal::try_from_iter(ret_vals)
}
None => {
// Shift the signal to the left by `a` and then run the untimed eventually.

View file

@ -286,7 +286,7 @@ fn compute_timed_eventually(signal: Signal<f64>, a: Duration, b: Option<Duration
)
}
}
Signal::try_from_iter(ret_vals.into_iter())
Signal::try_from_iter(ret_vals)
}
None => {
// Shift the signal to the left by `a` and then run the untimed eventually.