Returns the number of files in the index file.
(self)
| 64 | ) |
| 65 | |
| 66 | def __len__(self): |
| 67 | """Returns the number of files in the index file.""" |
| 68 | return len(self.filenames) |
| 69 | |
| 70 | def __getitem__(self, i: int) -> T.Any: |
| 71 | """Returns the content of the i-th line in the index file.""" |
nothing calls this directly
no outgoing calls
no test coverage detected