Changeset 16521 for main/waeup.uniben
- Timestamp:
- 29 Jun 2021, 13:29:15 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/studylevel.py
r16517 r16521 91 91 """Uniben Course Grading System 92 92 """ 93 if self.total_score is None: 94 return (None, None) 93 95 if self.total_score < self.passmark: 94 96 return ('F',0) 95 97 if getattr(self, 'grading_sys', 'A') == 'A': 96 if self.total_score is None:97 return (None, None)98 98 if self.total_score >= 70: 99 99 return ('A',5) … … 108 108 return ('F',0) 109 109 else: 110 if self.total_score is None:111 return (None, None)112 110 if self.total_score >= 70: 113 111 return ('A',5)
Note: See TracChangeset for help on using the changeset viewer.