1
0
Fork 0

Fix clippy

This commit is contained in:
Lars Martens 2023-12-03 11:28:07 +01:00
parent 6255df55e5
commit 357ce13b89
Signed by: haselkern
GPG key ID: B5CF1F363C179AD4

View file

@ -74,7 +74,7 @@ impl Set {
let mut result = Self::default();
for color in colors {
let (count, color) = color.split_once(" ").unwrap();
let (count, color) = color.split_once(' ').unwrap();
let count = count.parse().unwrap();
match color {
"red" => result.r = count,