1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-20 17:19:01 +00:00

chore(core): remove redundant type ignore after micropython update

This commit is contained in:
M1nd3r 2025-04-15 19:38:29 +02:00
parent 42b3a6c2c1
commit 5cf539985e

View File

@ -78,7 +78,7 @@ async def handle_received_message(
print("micropython.mem_info() from received_message_handler.py")
micropython.mem_info()
print("Allocation count:", micropython.alloc_count()) # type: ignore ["alloc_count" is not a known attribute of module "micropython"]
print("Allocation count:", micropython.alloc_count())
except AttributeError:
print(
"To show allocation count, create the build with TREZOR_MEMPERF=1"