(self)
| 366 | self.data = self.data_complete[self.data_complete['video_id'].isin(self.vid)] |
| 367 | |
| 368 | def __len__(self): |
| 369 | return self.data.shape[0] |
| 370 | |
| 371 | def __getitem__(self, idx): |
| 372 | item = self.data.iloc[idx] |
nothing calls this directly
no outgoing calls
no test coverage detected