From 3c3e9d574263375ad6d8c0f6f01f71b99f0c98b0 Mon Sep 17 00:00:00 2001 From: Arne Kappen Date: Tue, 15 Mar 2022 14:42:45 +0100 Subject: [PATCH] fix fmt Signed-off-by: Arne Kappen --- boards/arduino_mkrzero/examples/blinky_rtic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arduino_mkrzero/examples/blinky_rtic.rs b/boards/arduino_mkrzero/examples/blinky_rtic.rs index ac6493dd22e4..3e43936e33b9 100644 --- a/boards/arduino_mkrzero/examples/blinky_rtic.rs +++ b/boards/arduino_mkrzero/examples/blinky_rtic.rs @@ -18,9 +18,9 @@ mod app { use super::*; use bsp::hal; use hal::clock::{ClockGenId, ClockSource, GenericClockController}; + use hal::gpio::{v2::PB08, Output, Pin, PushPull}; use hal::pac::Peripherals; use hal::rtc::{Count32Mode, Duration, Rtc}; - use hal::gpio::{Pin, Output, PushPull, v2::PB08}; #[local] struct Local {}