(self)
| 151 | self.original_files = [] |
| 152 | |
| 153 | def _get_file_list(self): |
| 154 | return [path for path in glob.iglob(os.path.join(self.path, "*")) if "__pycache__" not in path] |
| 155 | |
| 156 | def _remove_artifacts(self, must_exist=True): |
| 157 | for artifact in self.artifacts: |