(self, filename)
| 20 | return EventSchema(type_list, role_list, type_role_dict) |
| 21 | |
| 22 | def write_to_file(self, filename): |
| 23 | with open(filename, 'w') as output: |
| 24 | output.write(json.dumps(self.type_list) + '\n') |
| 25 | output.write(json.dumps(self.role_list) + '\n') |
| 26 | output.write(json.dumps(self.type_role_dict) + '\n') |
| 27 | |
| 28 | |
| 29 | def merge_schema(schema_list: List[EventSchema]): |
nothing calls this directly
no outgoing calls
no test coverage detected