From fb7e1f147258f030a8b2fe743582d3c0dfdcda26 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Mon, 1 Sep 2025 02:47:29 +0200 Subject: [PATCH] Small cleanup --- automation_lib/src/device.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/automation_lib/src/device.rs b/automation_lib/src/device.rs index ebfffbb..8e2c334 100644 --- a/automation_lib/src/device.rs +++ b/automation_lib/src/device.rs @@ -2,7 +2,6 @@ use std::fmt::Debug; use automation_cast::Cast; use dyn_clone::DynClone; -use google_home::traits::OnOff; use mlua::ObjectLike; use crate::event::OnMqtt; @@ -18,7 +17,7 @@ pub trait LuaDeviceCreate { } pub trait Device: - Debug + DynClone + Sync + Send + Cast + Cast + Cast + Debug + DynClone + Sync + Send + Cast + Cast { fn get_id(&self) -> String; }