(cls, json_file: str)
| 321 | |
| 322 | @classmethod |
| 323 | def _dict_from_json_file(cls, json_file: str): |
| 324 | with open(json_file, "r", encoding="utf-8") as reader: |
| 325 | text = reader.read() |
| 326 | return json.loads(text) |
| 327 | |
| 328 | def __eq__(self, other): |
| 329 | return self.__dict__ == other.__dict__ |
no outgoing calls
no test coverage detected