load special template
(self, template_name)
| 53 | return config |
| 54 | |
| 55 | def load_template(self, template_name): |
| 56 | ''' |
| 57 | load special template |
| 58 | ''' |
| 59 | with open(self.template_path + "/" + template_name, 'r') as stream_file: |
| 60 | template = json.load(stream_file) |
| 61 | return template |
| 62 | |
| 63 | def save(self): |
| 64 | ''' |
no test coverage detected