(self)
| 20 | self.list_files = os.listdir(self.root_dir) |
| 21 | |
| 22 | def __len__(self): |
| 23 | return len(self.list_files) |
| 24 | |
| 25 | def __getitem__(self, index): |
| 26 | img_file = self.list_files[index] |
nothing calls this directly
no outgoing calls
no test coverage detected