(self)
| 179 | print("Example 10") |
| 180 | class Subject: |
| 181 | def __init__(self): |
| 182 | self._grades = [] |
| 183 | |
| 184 | def report_grade(self, score, weight): |
| 185 | self._grades.append(Grade(score, weight)) |
nothing calls this directly
no outgoing calls
no test coverage detected