18 Nov
2016
18 Nov
'16
11:55 a.m.
That is a good idea. If I copy and paste a "def" into the driver, will it automatically replace the common one?
Yep, that's how subclasses work. If you re-define something in the subclass, then it takes precedence. If not, you get the one defined in your parent class (i.e. the common one).
--Dan