(self, fname)
| 2145 | return sorted(set(files)) |
| 2146 | |
| 2147 | def is_file_safe(self, fname): |
| 2148 | try: |
| 2149 | return Path(self.abs_root_path(fname)).is_file() |
| 2150 | except OSError: |
| 2151 | return |
| 2152 | |
| 2153 | def get_all_relative_files(self): |
| 2154 | if self.repo: |
nothing calls this directly
no test coverage detected