class Thing(object):
  def sound(self):
    return '' #Silent
class Animal(Thing):
  def sound(self):
    return 'Roar!'
class MuteAnimal(Animal):
   def sound(self):
    return '' #Silent
Is there a pattern in python for MuteAnimal's sound to refer to its grandparent class Thing's implementation? (eg super(MuteAnimal,self).super(Animal.self).sound() ?) Or is Mixin a better use case here? 
 
     
    