(self, simplified, traditional)
| 63 | """ |
| 64 | |
| 65 | def __init__(self, simplified, traditional): |
| 66 | self.simplified = simplified |
| 67 | self.traditional = traditional |
| 68 | # self.__repr__ = self.__str__ |
| 69 | |
| 70 | def __str__(self): |
| 71 | return self.simplified or self.traditional or None |
nothing calls this directly
no outgoing calls
no test coverage detected