Open samtygier-stfc opened 2 weeks ago
Use abc.ABC to make AutoColorMenu and BadDataOverlay into abstract base classes. The methods that they need from the image view can be abstractmethods.
abc.ABC
AutoColorMenu
BadDataOverlay
abstractmethod
A slight complication is pythons metaclass rules, so a derived metaclass will be needed.
Desired Behaviour
Use
abc.ABC
to makeAutoColorMenu
andBadDataOverlay
into abstract base classes. The methods that they need from the image view can beabstractmethod
s.A slight complication is pythons metaclass rules, so a derived metaclass will be needed.