What is the correct type annotation for a __init__ function in python?
__init__
class MyClass: ...
Which of the following would make mo
self should be omitted from the annotation when it is given as a comment, and __init__() should be marked as -> None. This is all specified explicitly in PEP-0484.
self
__init__()
-> None