from modelos.cardapio.item_cardapio import ItemCardapio
class Sobremesa(ItemCardapio):
def __init__(self, nome: str, preco: float, tipo: str, tamanho: str):
super().__init__(nome, preco)
self.tipo = tipo
self.tamanho = tamanho
def __str__(self):
return f'{self._nome} | {self.tipo} | {self.tamanho} | {self._preco}'
def aplicar_desconto(self):
pass