(self)
| 265 | return self |
| 266 | |
| 267 | def delete(self): |
| 268 | try: |
| 269 | os.remove(self.path) |
| 270 | return True |
| 271 | except: |
| 272 | raise DataApiError('Failed to delete local file ' + self.path) |
| 273 | |
| 274 | |
| 275 | def localPutHelper(path, contents): |
nothing calls this directly
no test coverage detected