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; }