I don't understand the meaning of ->
in Python. Searching gives me pages about bitwise operators, but there is no such operator among bitwise operators. It is usually used in a function's description.
Example:
class HelloOperator(BaseOperator):
def __init__(
self,
name: str,
**kwargs) -> None:
super().__init__(**kwargs)
self.name = name