(self, solution_file)
| 108 | |
| 109 | |
| 110 | def load_solutions(self, solution_file): |
| 111 | self.solution_file = solution_file |
| 112 | self.solutions = json.load(open(self.solution_file, "r")) |
| 113 | |
| 114 | def check_element_type(lst, t): |
| 115 | for l in lst: |
nothing calls this directly
no outgoing calls
no test coverage detected