From f98532a382fba26b1aa41b22da83ea52f6d06fba Mon Sep 17 00:00:00 2001 From: Tim Riddermann Date: Fri, 6 Jan 2023 10:35:07 +0100 Subject: [PATCH] fixed _subconsindexes --- construct-stubs/core.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/construct-stubs/core.pyi b/construct-stubs/core.pyi index 0ff8888..bf280c0 100644 --- a/construct-stubs/core.pyi +++ b/construct-stubs/core.pyi @@ -1122,7 +1122,7 @@ class LazyContainer(t.Generic[ContainerType], t.Dict[str, ContainerType]): class LazyStruct(Construct[ParsedType, BuildTypes]): subcons: t.List[Construct[t.Any, t.Any]] _subcons: t.Dict[str, Construct[t.Any, t.Any]] - _subconsindexes: t.Dict[str, Construct[t.Any, t.Any]] + _subconsindexes: t.Dict[str, int] def __new__( cls, *subcons: Construct[t.Any, t.Any], **subconskw: Construct[t.Any, t.Any] ) -> LazyStruct[LazyContainer[t.Any], t.Optional[t.Dict[str, t.Any]]]: ...