Mostly wondering if this is expected/desired: ``` python import attr @attr.s(kw_only=True) class A: a = attr.ib(kw_only=False) A(1) # Error ```