diff --git a/core/embed/rust/src/ui/layout_eckhart/component_msg_obj.rs b/core/embed/rust/src/ui/layout_eckhart/component_msg_obj.rs index ffbaa304f6..dd54f124e0 100644 --- a/core/embed/rust/src/ui/layout_eckhart/component_msg_obj.rs +++ b/core/embed/rust/src/ui/layout_eckhart/component_msg_obj.rs @@ -1,16 +1,15 @@ +#[cfg(not(feature = "clippy"))] +use crate::ui::component::{ + text::paragraphs::{ParagraphSource, Paragraphs}, + Component, Timeout, +}; use crate::{ error::Error, micropython::{obj::Obj, util::new_tuple}, - ui::{ - component::{ - text::paragraphs::{ParagraphSource, Paragraphs}, - Component, Timeout, - }, - layout::{ - device_menu_result::*, - obj::ComponentMsgObj, - result::{CANCELLED, CONFIRMED, INFO}, - }, + ui::layout::{ + device_menu_result::*, + obj::ComponentMsgObj, + result::{CANCELLED, CONFIRMED, INFO}, }, };