diff --git a/src/epd1in54b/mod.rs b/src/epd1in54b/mod.rs index abdd4b3..9e9b1cb 100644 --- a/src/epd1in54b/mod.rs +++ b/src/epd1in54b/mod.rs @@ -6,7 +6,9 @@ use embedded_hal::{ }; use crate::interface::DisplayInterface; -use crate::traits::{InternalWiAdditions, RefreshLUT, WaveshareDisplay, WaveshareThreeColorDisplay}; +use crate::traits::{ + InternalWiAdditions, RefreshLUT, WaveshareDisplay, WaveshareThreeColorDisplay, +}; //The Lookup Tables for the Display mod constants; diff --git a/src/traits.rs b/src/traits.rs index 9f5cdb8..2af6dec 100644 --- a/src/traits.rs +++ b/src/traits.rs @@ -52,7 +52,6 @@ where ) -> Result<(), SPI::Error>; } - /// Functions to interact with three color panels pub trait WaveshareThreeColorDisplay: WaveshareDisplay