class MessageModel: def __init__(self, msg='hello, world'): self.msg = msg def __call__(self): print(self.msg)