Return the length of the scp file.
(self)
| 157 | return read_hdf5(p, self.default_hdf5_path) |
| 158 | |
| 159 | def __len__(self): |
| 160 | """Return the length of the scp file.""" |
| 161 | return len(self.data) |
| 162 | |
| 163 | def __iter__(self): |
| 164 | """Return the iterator of the scp file.""" |
nothing calls this directly
no outgoing calls
no test coverage detected