Closed felipedau closed 7 years ago
As I continued working on #21, I noticed there was no need to subclass Thread
in Introduction
and now there is no need to fix this. Anyways, here is some useful info:
__attr_post_init__
instead of __attrs_post_init__
super().__init__()
inside itThread.__init__()
not being called was the issue I had in the first place TypeError: unhashable type
hash=True
to @attr.s()
makes it hashable
I could not use attrs in the
Introduction
class because it inherits fromThread
and I have not found a way to callsuper
. Example:@meejah, do you have an idea on how to do this?