(self, input)
| 149 | assert False, "Not implemented" |
| 150 | |
| 151 | def flatten(self, input): |
| 152 | new_list = [] |
| 153 | for i in input: |
| 154 | for j in i: |
| 155 | new_list.append(j) |
| 156 | return new_list |
| 157 | |
| 158 | def load_video(self, video_path, max_frames_num): |
| 159 | if type(video_path) == str: |
no outgoing calls
no test coverage detected