Skip to content

Modules

foo(bar)

Summary line.

Extended description of function.

Parameters:

Name Type Description Default
bar str

Description of input argument.

required

Returns:

Type Description
str

Description of return value

Source code in pyvcell/foo.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def foo(bar: str) -> str:
    """Summary line.

    Extended description of function.

    Args:
        bar: Description of input argument.

    Returns:
        Description of return value
    """

    return bar