R0ll1ngSt0ne
Results
1
issues of
R0ll1ngSt0ne
Consider this code: ```python import attr @attr.s(auto_attribs=True, kw_only=True) class A: foo: str @attr.s(auto_attribs=True, kw_only=True) class B(A): foo = "bar" b = B() ``` When compiled, this fails with: ``` TypeError:...