Return the uid of the i-th line in the index file. If with_uid was set to False, returns None.
(self, i: int)
| 100 | return out |
| 101 | |
| 102 | def get_uid(self, i: int): |
| 103 | """Return the uid of the i-th line in the index file. |
| 104 | If with_uid was set to False, returns None.""" |
| 105 | |
| 106 | return self.uids[i] |
| 107 | |
| 108 | def get_invalid_idxs(self): |
| 109 | """Return indexes of which the files do not exist.""" |
nothing calls this directly
no outgoing calls
no test coverage detected