(self)
| 531 | return requests.get(f"{old_baseurl}{endpoint}", timeout=10, headers=headers, params=params or None).json() |
| 532 | |
| 533 | def post(self): |
| 534 | pass # TODO |
| 535 | |
| 536 | def get_access_token(self): |
| 537 | if self.access_token and self.access_token_expires_on > time.time(): |
no outgoing calls
no test coverage detected