(self)
| 31 | return sorted(os.listdir(self.directory)) |
| 32 | |
| 33 | def getPictures(self): |
| 34 | pictures = list(filter(self.filter, self.sortFiles())) |
| 35 | |
| 36 | if not pictures: |
| 37 | print(f" [Error] there are no pictures in the directory: {self.directory} ") |
| 38 | return False |
| 39 | |
| 40 | print("Found picture(s) :") |
| 41 | return pictures |
| 42 | |
| 43 | def selectPictures(self, pictures): |
| 44 | """Allow user to manually pick each picture or merge all""" |
no test coverage detected