Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CramBL committed Sep 10, 2024
1 parent 41b8deb commit cb8ed27
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/logs/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,20 +148,20 @@ impl GeneratorLog {
/// Don't be tempted to comment out stuff just because it's easy to leave out
/// "irrelevant" plots that way. Creat a new `selective_plots` functions or similar
pub fn all_plots(&self) -> Vec<Line> {
let mut all_plots = Vec::new();
all_plots.push(self.rrotor_plot());
all_plots.push(self.rpm_plot());
all_plots.push(self.power_plot());
all_plots.push(self.pwm_plot());
all_plots.push(self.load_plot());
all_plots.push(self.irotor_plot());
all_plots.push(self.temp1_plot());
all_plots.push(self.temp2_plot());
all_plots.push(self.i_in_plot());
all_plots.push(self.i_out_plot());
all_plots.push(self.vbat_plot());
all_plots.push(self.vout_plot());
all_plots
vec![
self.rrotor_plot(),
self.rpm_plot(),
self.power_plot(),
self.pwm_plot(),
self.load_plot(),
self.irotor_plot(),
self.temp1_plot(),
self.temp2_plot(),
self.i_in_plot(),
self.i_out_plot(),
self.vbat_plot(),
self.vout_plot(),
]
}
}

Expand Down

0 comments on commit cb8ed27

Please sign in to comment.