Changeset fb5d03a in flexograder
- Timestamp:
- 11/10/25 11:51:57 (2 months ago)
- Branches:
- master
- Children:
- bc820cf
- Parents:
- bb42e13
- Files:
-
- 1 added
- 1 deleted
- 1 edited
-
builder/exam.py (modified) (2 diffs)
-
examples/KID.json (added)
-
examples/KID_Test_v3.pdf (deleted)
Legend:
- Unmodified
- Added
- Removed
-
builder/exam.py
rbb42e13 rfb5d03a 7 7 8 8 from flexoentity import FlexoEntity, EntityType, EntityState 9 from .exam_elements import ExamElement 9 from .exam_elements import ExamElement, ChoiceQuestion 10 10 from .question_factory import question_factory 11 11 … … 213 213 def shuffle_options(self): 214 214 for each_question in self.questions: 215 each_question.shuffle_answers() 215 if isinstance(each_question, ChoiceQuestion): 216 each_question.shuffle_answers() 216 217 217 218 @property
Note:
See TracChangeset
for help on using the changeset viewer.
