(self)
| 654 | return os.path.join(repos_dir, repo_token) |
| 655 | |
| 656 | def close(self): |
| 657 | self.scm.close() |
| 658 | self.state.close() |
| 659 | if "dvcfs" in self.__dict__: |
| 660 | self.dvcfs.close() |
| 661 | if self._data_index is not None: |
| 662 | self._data_index.close() |
| 663 | |
| 664 | def _reset(self): |
| 665 | self.scm._reset() |
no outgoing calls