I mean when we have something like
def returnNumber() -> int | None:
return 1
Is there any way to specify in the init function that we are going to return the class itself?
class Tree:
def __init__(self) -> Tree: #hereeee
because in language server auto completion appears
() -> None #this with a class init
() -> int|None # this with the function example