Closed TomFryers closed 2 years ago
I think this is supposed to be on the main CPython issue tracker instead, and indeed it already exists there.
Thanks, @TomFryers. You're correct, the main tracker is the place for this. I apologize for not responding to this issue when you created it, I'm behind on lots of things!
Basically, this issue with attrs also applies to dataclasses.
Trying to run this code
gives this error message.
Replacing
super().hi()
withsuper(Sub, self).hi()
fixes this, but it's not ideal.