(self, string: str)
| 209 | return self.loadJson(f.read().decode(encoding=encoding, errors=errors)) |
| 210 | |
| 211 | def loadJson(self, string: str) -> bool: |
| 212 | return self.loadData(json.loads(string)) |
| 213 | |
| 214 | def loadData(self, data: dict, force: bool = False) -> bool: |
| 215 | if isinstance(data, dict): |