class ItemAdocao:
def __init__(self, pet, data):
self.pet = pet
self.data = data
def __str__(self):
return f"Pet: [{self.pet}] | Data: {self.data}"