(output_file, utils_functions, presentation_object_name)
| 18 | return code |
| 19 | |
| 20 | def save_poster_code(output_file, utils_functions, presentation_object_name): |
| 21 | code = utils_functions |
| 22 | code = fr''' |
| 23 | # Save the presentation |
| 24 | save_presentation({presentation_object_name}, file_name="{output_file}") |
| 25 | ''' |
| 26 | return code |
| 27 | |
| 28 | def generate_panel_code(panel_dict, utils_functions, slide_object_name, visible=False, theme=None): |
| 29 | code = utils_functions |
no outgoing calls
no test coverage detected