- Timestamp:
- 16 Jan 2017, 12:48:10 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/studylevel.py
r14407 r14409 83 83 """Returns the grade calculated from total score. 84 84 """ 85 return getGradeWeightFromScore(self.total_score , self.student)[0]85 return getGradeWeightFromScore(self.total_score)[0] 86 86 87 87 @property … … 89 89 """Returns the weight calculated from total score. 90 90 """ 91 return getGradeWeightFromScore(self.total_score , self.student)[1]91 return getGradeWeightFromScore(self.total_score)[1] 92 92 93 93 CustomCourseTicket = attrs_to_fields(CustomCourseTicket)
Note: See TracChangeset for help on using the changeset viewer.