From cebd147d760a29f13e9196b8f5c7c48cc56ce7dc Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Wed, 20 Nov 2024 11:33:46 +0100 Subject: [PATCH] fixup! refactor(core): abstract cache and context [no changelog] --- core/src/trezor/wire/codec/codec_context.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/trezor/wire/codec/codec_context.py b/core/src/trezor/wire/codec/codec_context.py index 2934a7f170..6d7f94ced9 100644 --- a/core/src/trezor/wire/codec/codec_context.py +++ b/core/src/trezor/wire/codec/codec_context.py @@ -69,7 +69,6 @@ class CodecContext(Context): ) # look up the protobuf class and parse the message - from .. import message_handler # noqa: F401 from ..message_handler import wrap_protobuf_load return wrap_protobuf_load(msg.data, expected_type)