Source code for ase2sprkkr.input_parameters.test.doc
"""
Functionality for enriching docstrings.
"""
[docs]
def process_input_parameters_definition(module, definition):
"""
Add runtime-generated information about the task input parameters to the
docstring of the module.
"""
module.__doc__ = (getattr(module, '__doc__', None) or '') + """\n
**Description of the sections and parameters**
""" + verbatim(definition.description(verbose='all'))