From 8f89ade01010291f42098c590d2209b82a7c6125 Mon Sep 17 00:00:00 2001 From: Johan Kristell Date: Sat, 28 Dec 2019 09:13:40 +0100 Subject: [PATCH] cargo fmt --- src/epd1in54b/mod.rs | 4 +++- src/traits.rs | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) 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