2 ms·
TIL that in Python you cannot use a mixin class to provide implementation for an abstract base class that defines the interface. In other words, in the inherit
by manuel_w 2y ago
TIL that in Python you cannot use a mixin class to provide implementation for an abstract base class that defines the interface.
In other words, in the inheritance tree, the class providing the common implementation must sit between the interface class and the concrete classes.