Skip to content

Commit

Permalink
fix(lint): apply clippy suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Mar 31, 2024
1 parent 48e5ad6 commit b47e91a
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions systeroid-core/src/config.rs
Expand Up @@ -131,20 +131,15 @@ impl Config {
}
}
if let Some(section) = ini.section(Some("cli.colors")) {
if let Some(default_color) = section
.get("default_color")
.and_then(|v| Color::try_from(v).ok())
{
if let Some(default_color) = section.get("default_color").map(Color::from) {
self.cli.color.default_color = default_color;
}
for (key, value) in section.iter() {
if key.starts_with("section_") {
if let (sysctl_section, Some(color)) = (
self.cli.color.section_colors.insert(
Section::from(key.trim_start_matches("section_").to_string()),
Color::try_from(value).ok(),
) {
self.cli.color.section_colors.insert(sysctl_section, color);
}
Color::from(value),
);
}
}
}
Expand Down

0 comments on commit b47e91a

Please sign in to comment.