You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use abc.ABC to make AutoColorMenu and BadDataOverlay into abstract base classes. The methods that they need from the image view can be abstractmethods.
A slight complication is pythons metaclass rules, so a derived metaclass will be needed.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: