(self)
| 111 | return self.length |
| 112 | |
| 113 | def shape(self): |
| 114 | if self.height is not None and self.width is not None: |
| 115 | return self.height, self.width |
| 116 | else: |
| 117 | height, width, _ = self.__getitem__(0).shape |
| 118 | return height, width |
| 119 | |
| 120 | def __getitem__(self, item): |
| 121 | frame = self.data.__getitem__(item) |
nothing calls this directly
no test coverage detected