Skip to content

Index

some_function()

Some function docstring

RETURNS DESCRIPTION
str

Some string

Source code in bootstrap_python_package/__init__.py
1
2
3
4
5
6
7
8
def some_function() -> str:
    """
    Some function docstring

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