Skip to content

Index

some_function()

Some function docstring

RETURNS DESCRIPTION
str

Some string

Source code in re_static_mypy/__init__.py
 5
 6
 7
 8
 9
10
11
12
def some_function() -> str:
    """
    Some function docstring

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