(self, inner_path)
| 323 | |
| 324 | # Load and parse json file |
| 325 | def loadJson(self, inner_path): |
| 326 | with self.open(inner_path, "r", encoding="utf8") as file: |
| 327 | return json.load(file) |
| 328 | |
| 329 | # Write formatted json file |
| 330 | def writeJson(self, inner_path, data): |
no test coverage detected