A method to get the client object associated with this token: .. code-block:: def get_client(self): return Client.get(self.client_id)
(self)
| 233 | raise NotImplementedError() |
| 234 | |
| 235 | def get_client(self) -> ClientMixin: |
| 236 | """A method to get the client object associated with this token: |
| 237 | |
| 238 | .. code-block:: |
| 239 | |
| 240 | def get_client(self): |
| 241 | return Client.get(self.client_id) |
| 242 | """ |
| 243 | raise NotImplementedError() |