(self, deps: Sequence[str])
| 210 | return self._new_repo(repo, ref, deps, clone_strategy) |
| 211 | |
| 212 | def make_local(self, deps: Sequence[str]) -> str: |
| 213 | return self._new_repo( |
| 214 | 'local', C.LOCAL_REPO_VERSION, deps, _make_local_repo, |
| 215 | ) |
| 216 | |
| 217 | def _create_configs_table(self, db: sqlite3.Connection) -> None: |
| 218 | db.executescript( |