| 24 | |
| 25 | |
| 26 | class CompSciStudent(Student): |
| 27 | def __init__(self, name): |
| 28 | super().__init__(name) |
| 29 | |
| 30 | def git_username(self): |
| 31 | raise NotImplementedError |
| 32 | |
| 33 | |
| 34 | class CollegeStudent(Student): |
nothing calls this directly
no outgoing calls
no test coverage detected