(self, type_list, role_list, type_role_dict)
| 7 | |
| 8 | class EventSchema: |
| 9 | def __init__(self, type_list, role_list, type_role_dict): |
| 10 | self.type_list = type_list |
| 11 | self.role_list = role_list |
| 12 | self.type_role_dict = type_role_dict |
| 13 | |
| 14 | @staticmethod |
| 15 | def read_from_file(filename): |
nothing calls this directly
no outgoing calls
no test coverage detected