(self)
| 38 | self.json_data = json.load(json_file) |
| 39 | |
| 40 | def commit_to_disk(self): |
| 41 | with open(self.json_path, "w") as json_file: |
| 42 | json.dump(self.json_data, json_file, indent=4) |
| 43 | |
| 44 | def get_item(self, key: str, default = None) -> str: |
| 45 | if key in self.json_data: |
no outgoing calls
no test coverage detected