Changeset 14408 for main/waeup.fceokene
- Timestamp:
- 16 Jan 2017, 12:46:10 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/studylevel.py
r14406 r14408 86 86 """Returns the grade calculated from total score. 87 87 """ 88 return getGradeWeightFromScore(self.total_score , self.student)[0]88 return getGradeWeightFromScore(self.total_score)[0] 89 89 90 90 @property … … 92 92 """Returns the weight calculated from total score. 93 93 """ 94 return getGradeWeightFromScore(self.total_score , self.student)[1]94 return getGradeWeightFromScore(self.total_score)[1] 95 95 96 96 CustomCourseTicket = attrs_to_fields(CustomCourseTicket)
Note: See TracChangeset for help on using the changeset viewer.