def __init__(self, price, shop_quantity, inventory, prod_category, name, size, refrig_temp, exp_date):
     Product.__init__(self, price, shop_quantity, inventory, prod_category)
     Food.__init__(self)
     self.name = name
     self.size = size
     self.refrig_temp = refrig_temp
     self.exp_date = exp_date
Exemplo n.º 2
0
	def __init__(self, name, calories):
		"""Fruit constructor calls Food constructor"""
		Food.__init__(self, name, calories)