(self)
| 224 | return bts |
| 225 | |
| 226 | def getString(self): |
| 227 | exists, error = self.existsWithError() |
| 228 | if not exists: |
| 229 | raise DataApiError('unable to get file {} - {}'.format(self.path, error)) |
| 230 | with open(self.path, 'r') as f: return f.read() |
| 231 | |
| 232 | def getJson(self): |
| 233 | exists, error = self.existsWithError() |
nothing calls this directly
no test coverage detected