(name)
| 2 | import json |
| 3 | |
| 4 | def sanitize_for_var(name): |
| 5 | # Convert any character that is not alphanumeric or underscore into underscore. |
| 6 | return re.sub(r'[^0-9a-zA-Z_]+', '_', name) |
| 7 | |
| 8 | def initialize_poster_code(width, height, slide_object_name, presentation_object_name, utils_functions): |
| 9 | code = utils_functions |
no test coverage detected