Inherits from PersonSuper PersonSuper will appear in Employee.__mro__
| 113 | |
| 114 | # Inheriting subclasses |
| 115 | class Employee(PersonSuper): |
| 116 | """Inherits from PersonSuper |
| 117 | PersonSuper will appear in Employee.__mro__ |
| 118 | """ |
| 119 | pass |
| 120 | |
| 121 | class Friend: |
| 122 | """Built implicitly from Person |
nothing calls this directly
no outgoing calls
no test coverage detected