()
| 196 | |
| 197 | # Get a random category and random line from that category |
| 198 | def randomTrainingPair(): |
| 199 | category = randomChoice(all_categories) |
| 200 | line = randomChoice(category_lines[category]) |
| 201 | return category, line |
| 202 | |
| 203 | |
| 204 | ###################################################################### |
no test coverage detected