We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
My framework relies on (smart) subclassing, but I've also got it to work with attrs mostly. Running into a problem like the following.
@attr.s class BaseClass(): value = attr.ib(default=10) @attr.s class TestClass(BaseClass): @value.default def _not_value(self): return 20