(self)
| 236 | return json.loads(open(self.path, 'r').read()) |
| 237 | |
| 238 | def exists(self): |
| 239 | return self.existsWithError()[0] |
| 240 | |
| 241 | def existsWithError(self): |
| 242 | return os.path.isfile(self.path), '' |
nothing calls this directly
no test coverage detected