(self)
| 56 | |
| 57 | @property |
| 58 | def token(self): |
| 59 | return dict( |
| 60 | oauth_token=self.auth.token, |
| 61 | oauth_token_secret=self.auth.token_secret, |
| 62 | oauth_verifier=self.auth.verifier, |
| 63 | ) |
| 64 | |
| 65 | @token.setter |
| 66 | def token(self, token): |
nothing calls this directly
no test coverage detected