(self, text)
| 19 | timestamp = web_db.Column(web_db.DateTime, default=datetime.now) |
| 20 | |
| 21 | def __init__(self, text): |
| 22 | self.text = text |
| 23 | |
| 24 | def __repr__(self): |
| 25 | return '<Message: %r>' % self.text |
nothing calls this directly
no outgoing calls
no test coverage detected