blob: c4027f36c1ad2ffc12577a3e1b6ceba744f73785 [file] [log] [blame]
# -*- coding: utf-8 -*-
from towel_stuff import Towel
class Chocolate(object):
"""A piece of chocolate."""
def wrap_with_towel(self):
towel = Towel()
towel.wrap(self)
return towel