diff --git a/construct-stubs/core.pyi b/construct-stubs/core.pyi index d62f962..83a7525 100644 --- a/construct-stubs/core.pyi +++ b/construct-stubs/core.pyi @@ -1020,15 +1020,6 @@ class IfThenElse(Construct[ParsedType, BuildTypes]): ) -> IfThenElse[ t.Union[ThenParsedType, ElseParsedType], t.Union[ThenBuildTypes, ElseBuildTypes] ]: ... - def __init__( - self: IfThenElse[ - t.Union[ThenParsedType, ElseParsedType], - t.Union[ThenBuildTypes, ElseBuildTypes], - ], - condfunc: ConstantOrContextLambda[bool], - thensubcon: Construct[ThenParsedType, ThenBuildTypes], - elsesubcon: Construct[ElseParsedType, ElseBuildTypes], - ) -> None: ... def If( condfunc: ConstantOrContextLambda[bool],