(self, path)
| 399 | return chosen_base_url |
| 400 | |
| 401 | def _construct_url(self, path): |
| 402 | sep = '' |
| 403 | if self._base_url and not self._base_url.endswith('/'): |
| 404 | sep = '/' |
| 405 | return f'{self._base_url}{sep}{path}' |
| 406 | |
| 407 | def _fetch_metadata_token(self): |
| 408 | self._assert_enabled() |
no outgoing calls
no test coverage detected