(self, file_path = None)
| 16 | pass |
| 17 | |
| 18 | def load_templates(self, file_path = None): |
| 19 | if file_path: |
| 20 | self.template_file_path = file_path |
| 21 | self.templates = json.load(open(self.template_file_path, "r")) |
| 22 | |
| 23 | def load_examples(self, file_path = None): |
| 24 | if not file_path: |
no outgoing calls
no test coverage detected