(self, title, description, author_id)
| 15 | author_id = db.Column(db.Integer, ForeignKey('users.id')) |
| 16 | |
| 17 | def __init__(self, title, description, author_id): |
| 18 | self.title = title |
| 19 | self.description = description |
| 20 | self.author_id = author_id |
| 21 | |
| 22 | def __repr__(self): |
| 23 | return '<title {}'.format(self.title) |
nothing calls this directly
no outgoing calls
no test coverage detected