1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-06-28 10:52:32 +00:00

fix(core): clippy warning

[no changelog]
This commit is contained in:
Lukas Bielesch 2025-05-21 13:15:22 +02:00 committed by Lukáš Bielesch
parent ec4e6de040
commit 17f2d05baa

View File

@ -1,16 +1,15 @@
#[cfg(not(feature = "clippy"))]
use crate::ui::component::{
text::paragraphs::{ParagraphSource, Paragraphs},
Component, Timeout,
};
use crate::{ use crate::{
error::Error, error::Error,
micropython::{obj::Obj, util::new_tuple}, micropython::{obj::Obj, util::new_tuple},
ui::{ ui::layout::{
component::{ device_menu_result::*,
text::paragraphs::{ParagraphSource, Paragraphs}, obj::ComponentMsgObj,
Component, Timeout, result::{CANCELLED, CONFIRMED, INFO},
},
layout::{
device_menu_result::*,
obj::ComponentMsgObj,
result::{CANCELLED, CONFIRMED, INFO},
},
}, },
}; };