(self)
| 205 | |
| 206 | # Get file from the data api |
| 207 | def getFile(self): |
| 208 | exists, error = self.existsWithError() |
| 209 | if not exists: |
| 210 | raise DataApiError('unable to get file {} - {}'.format(self.path, error)) |
| 211 | return open(self.path) |
| 212 | |
| 213 | def getName(self): |
| 214 | _, name = getParentAndBase(self.path) |
nothing calls this directly
no test coverage detected