From 29b51a3bd2e08e4d1afd1fb378c1ecc01eed2544 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Mon, 6 May 2024 10:01:02 +0200 Subject: [PATCH] rustfmt --- src/controller/blocking.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/controller/blocking.rs b/src/controller/blocking.rs index 2b1c4e1..14b5230 100644 --- a/src/controller/blocking.rs +++ b/src/controller/blocking.rs @@ -1,4 +1,5 @@ -use crate::{controller::ErrorType, data, ControllerToHostPacket}; +use crate::controller::ErrorType; +use crate::{data, ControllerToHostPacket}; pub trait Controller: ErrorType { fn write_acl_data(&self, packet: &data::AclPacket) -> Result<(), Self::Error>;