Source code for GIM.template_GIM_documentation
[docs]def templateFunction(arg1, arg2):
    """Summary line.
    Extended description of function.
    Note:
        Do not include the `self` parameter in the ``Args`` section.
    Args:
        arg1 (float): Description of arg1
        arg2 (float): Description of arg2
    Returns:
        (float): Sum of arg1 and arg2
    """
    m = arg1 + arg2
    return m
if __name__ == "__main__":
    main()