(self)
| 399 | self.paths = sorted(path for path in self.root.rglob('*') if path.suffix.lower() in self.IMG_EXTENSIONS) |
| 400 | |
| 401 | def __repr__(self): |
| 402 | return f'FolderOfImages(root="{self.root}", len: {len(self)})' |
| 403 | |
| 404 | def __len__(self): |
| 405 | return len(self.paths) |
nothing calls this directly
no outgoing calls
no test coverage detected