(self)
| 100 | return self.name |
| 101 | |
| 102 | def __repr__(self): |
| 103 | return f"<{self.__class__.__module__}.{self.__class__.__qualname__}" \ |
| 104 | f" object {self.name!r}>" |
| 105 | |
| 106 | def __eq__(self, other): |
| 107 | if not isinstance(other, Font): |
no outgoing calls
no test coverage detected