From 470acd98cc0b1d85fcd02d62123e1ed702fe96e6 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Tue, 22 Apr 2025 05:04:14 -0300 Subject: [PATCH] Fix typing on mk_boxed_ext_structs --- tractor/msg/_codec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/msg/_codec.py b/tractor/msg/_codec.py index f8bc3aa6..f2bab4d0 100644 --- a/tractor/msg/_codec.py +++ b/tractor/msg/_codec.py @@ -266,7 +266,7 @@ def mk_dec( def mk_boxed_ext_structs( ext_types: list[Type], -) -> Struct: +) -> dict[Type, Struct]: box_types: dict[Type, Struct] = {} for ext_type in ext_types: info = msgspec.inspect.type_info(ext_type)