(self)
| 40 | |
| 41 | @property |
| 42 | def characterDisplay(self): |
| 43 | return "{} [{}]".format(self.characterName, self.server) |
| 44 | def is_token_expired(self): |
| 45 | if self.accessTokenExpires is None: |
| 46 | return True |
nothing calls this directly
no outgoing calls
no test coverage detected