(wrapped_name, full_params, param_list)
| 109 | ) |
| 110 | |
| 111 | def add_wrapper(wrapped_name, full_params, param_list): |
| 112 | buffer.write( |
| 113 | f''' |
| 114 | def {wrapped_name}(self, {full_params}) -> "{fig_classname}": |
| 115 | """ |
| 116 | {getattr(BaseFigure, wrapped_name).__doc__} |
| 117 | """ |
| 118 | return super().{wrapped_name}({param_list}) |
| 119 | ''' |
| 120 | ) |
| 121 | |
| 122 | add_wrapper( |
| 123 | "update", |
no test coverage detected