Improve handling of methods that must be implemented in subclasses. #88
Labels
Core
Add for issues having to do with core functions
Debug
Add for issues pertaining to debug options (logging)
Good first issue
Good for newcomers
Milestone
Currently, certain parent classes have methods that are required to be overridden by subclasses in order to function, and at the moment the parent class only returns dummy values. Ex the below method from
UIElement
:py_cui/py_cui/ui.py
Lines 76 to 80 in d859746
This should be changed to where these required override methods simply raise a
NotImplementedError
or something similar.The text was updated successfully, but these errors were encountered: