(self)
| 456 | |
| 457 | @property |
| 458 | def files(self): |
| 459 | if self._files is None: |
| 460 | self._files = self._read_files_cache() # try loading from cache dir |
| 461 | if self._files is None: |
| 462 | self._files = self._build_files_cache() # try loading from repository |
| 463 | if self._files is None: |
| 464 | self._files = {} # start from scratch |
| 465 | return self._files |
| 466 | |
| 467 | def _build_files_cache(self): |
| 468 | """rebuild the files cache by reading previous archive from repository""" |
nothing calls this directly
no test coverage detected