Closed
Description
Description of the problem
The current code creates a new abstract class, as in the example below. Python has dedicated abc.ABC
s for abstract base classes. It would provide us more flexibility and conform better to python's standards.
Example of the problem
References/Other comments
https://docs.python.org/3/library/abc.html
https://www.python.org/dev/peps/pep-3119/