Clippy lint
This commit is contained in:
parent
8b28bf2533
commit
cf0e191a6a
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ fn parse_style(style: &mut Style, value: Value) {
|
|||
}
|
||||
|
||||
fn hex_string_to_rgb(s: &str) -> Option<(u8, u8, u8)> {
|
||||
if s.starts_with("#") && s.len() >= 7 {
|
||||
if s.starts_with('#') && s.len() >= 7 {
|
||||
if let (Ok(red), Ok(green), Ok(blue)) = (
|
||||
u8::from_str_radix(&s[1..3], 16),
|
||||
u8::from_str_radix(&s[3..5], 16),
|
||||
|
|
Loading…
Reference in a new issue