Here's an example of what I mean:
class Duck:
SIZE = 'Fat'
class GreenDuck(Duck):
COLOR = 'Green'
DESCRIPTION = SIZE + ' and ' + COLOR
>>> alien_duck = GreenDuck()
>>> print(alien_duck.DESCRIPTION)
NameError: name 'SIZE' is not defined
>>> alien_duck.SIZE
Fat
Is there a way I can access the parent 'size' class variable from inside the class?
Also defining super().__init__() in the GreenDuck class doesn't fix it.