(self)
| 105 | self.width = width |
| 106 | |
| 107 | def __len__(self): |
| 108 | if self.length is None: |
| 109 | return len(self.data) |
| 110 | else: |
| 111 | return self.length |
| 112 | |
| 113 | def shape(self): |
| 114 | if self.height is not None and self.width is not None: |
no outgoing calls
no test coverage detected