Fix redundant import in color_palette example

This commit is contained in:
Héctor Ramón Jiménez 2024-03-19 07:08:25 +01:00
parent f409037c07
commit 5007e548ad
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -6,9 +6,7 @@ use iced::{
Color, Element, Font, Length, Pixels, Point, Rectangle, Renderer, Size,
Vector,
};
use palette::{
self, convert::FromColor, rgb::Rgb, Darken, Hsl, Lighten, ShiftHue,
};
use palette::{convert::FromColor, rgb::Rgb, Darken, Hsl, Lighten, ShiftHue};
use std::marker::PhantomData;
use std::ops::RangeInclusive;