Educational question with multiple choice options
| 39 | |
| 40 | @dataclass |
| 41 | class Question: |
| 42 | """Educational question with multiple choice options""" |
| 43 | |
| 44 | question: str |
| 45 | options: List[str] |
| 46 | correct_answer: str |
| 47 | difficulty: str = "medium" |
| 48 | |
| 49 | |
| 50 | @dataclass |
no outgoing calls
no test coverage detected