removed not working __init__

This commit is contained in:
Tim Riddermann 2023-01-06 12:05:14 +01:00
parent 232fcbd725
commit 238ca5d2df

View file

@ -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],