(db, collection, num_cards)
| 2 | |
| 3 | |
| 4 | def create_cards(db, collection, num_cards): |
| 5 | cards = [ |
| 6 | Card(front=f"Front {i}", back=f"Back {i}", collection_id=collection.id) |
| 7 | for i in range(num_cards) |
| 8 | ] |
| 9 | db.add_all(cards) |
| 10 | db.flush() |
| 11 | return cards |
| 12 | |
| 13 | |
| 14 | def create_sessions(db, user_id, collection, num_sessions, num_cards): |