Skip to content

Index

some_function()

Some function docstring

RETURNS DESCRIPTION
str

Some string

Source code in bootstrap_python_package/__init__.py
25
26
27
28
29
30
31
32
def some_function() -> str:
    """
    Some function docstring

    :return: Some string
    :rtype: str
    """
    return "some_variable_to_test"