From 238ca5d2dfeff18d471f10d82829aa8b9789c2be Mon Sep 17 00:00:00 2001 From: Tim Riddermann Date: Fri, 6 Jan 2023 12:05:14 +0100 Subject: [PATCH] removed not working __init__ --- construct-stubs/core.pyi | 9 --------- 1 file changed, 9 deletions(-) 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],