chore: run rustfmt

This commit is contained in:
Anand Balakrishnan 2023-03-22 14:57:27 -07:00
parent 00a1c32fc1
commit ad4d85ec3d
No known key found for this signature in database
6 changed files with 25 additions and 19 deletions

View file

@ -1,9 +1,10 @@
use num_traits::Num;
use std::{ops::RangeBounds, time::Duration};
use std::ops::RangeBounds;
use std::time::Duration;
use crate::ArgusResult;
use num_traits::Num;
use super::{InterpolationMethod, Sample};
use crate::ArgusResult;
/// A general Signal trait
pub trait BaseSignal {