basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

infer input typs for `__new__` from `__init__` and vice versa

Open DetachHead opened this issue 3 years ago • 0 comments

class Foo:
    def __new__(cls, value: int):
        ...

    def __init__(self, value): # inferred as int
        ...

DetachHead avatar Jun 26 '22 23:06 DetachHead