From 581e36cd2d3f166b109c13ef9a8e360ec533228c Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Thu, 9 Jan 2025 11:59:48 +0100 Subject: [PATCH] chore(core): fix channel manager docs [no changelog] --- core/src/trezor/wire/thp/channel_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/trezor/wire/thp/channel_manager.py b/core/src/trezor/wire/thp/channel_manager.py index 9a564f2470..75de9485f9 100644 --- a/core/src/trezor/wire/thp/channel_manager.py +++ b/core/src/trezor/wire/thp/channel_manager.py @@ -11,7 +11,7 @@ if TYPE_CHECKING: def create_new_channel(iface: WireInterface) -> Channel: """ - Creates a new channel for the interface `iface` with the buffer `buffer`. + Creates a new channel for the interface `iface`. """ channel_cache = cache_thp.get_new_channel(interface_manager.encode_iface(iface)) channel = Channel(channel_cache)