(func)
| 127 | |
| 128 | def format_docs(str): |
| 129 | def set_docs(func): |
| 130 | func.__doc__ = func.__doc__ % str |
| 131 | @wraps(func) |
| 132 | def original_func(*args, **kwargs): |
| 133 | return func(*args, **kwargs) |
| 134 | return original_func |
| 135 | return set_docs |
| 136 | |
| 137 | @task |
nothing calls this directly
no outgoing calls
no test coverage detected