(self, options)
| 505 | return ret |
| 506 | |
| 507 | def find_template(self, options): |
| 508 | dirpath = os.path.dirname(os.path.abspath(__file__)) |
| 509 | filename = dirpath + '/gen/{}{}_template'.format( |
| 510 | 'print_' if options.print_wire else '', options.page) |
| 511 | |
| 512 | return Template(filename=filename) |
| 513 | |
| 514 | def post_process(self): |
| 515 | """ method to handle any 'post processing' that needs to be done. |