From 1b8116129aeb695df4cee609281f4b8561b0838d Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Mon, 26 May 2025 07:44:21 +0300 Subject: [PATCH] chore(core): add a missing `Map` import for `obj_module` macro [no changelog] --- core/embed/rust/src/micropython/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/rust/src/micropython/macros.rs b/core/embed/rust/src/micropython/macros.rs index f549fdf53b..9f8bb5bf5b 100644 --- a/core/embed/rust/src/micropython/macros.rs +++ b/core/embed/rust/src/micropython/macros.rs @@ -180,7 +180,7 @@ macro_rules! obj_module { #[allow(unused_unsafe)] #[allow(unused_doc_comments)] unsafe { - use $crate::micropython::ffi; + use $crate::micropython::{ffi, map::Map}; static DICT: ffi::mp_obj_dict_t = ffi::mp_obj_dict_t { base: ffi::mp_obj_base_t {