(self, model_id: str)
| 102 | self.git_wrapper.config_git_token(self.model_dir, self.git_token) |
| 103 | |
| 104 | def _get_model_id_url(self, model_id: str) -> str: |
| 105 | endpoint = self._endpoint or get_endpoint() |
| 106 | return f'{endpoint}/{model_id}.git' |
| 107 | |
| 108 | def pull(self, remote: str = 'origin', branch: str = 'master'): |
| 109 | """Pull *remote*/*branch* into the local checkout.""" |
no test coverage detected