Skip to content

Hello

A short description of the project.

hello(name='World')

Return a greeting message.

Parameters:

Name Type Description Default
name str

The name to greet.

'World'

Returns:

Name Type Description
str str

A greeting message from the test_copier_uv package.

Source code in src/test_copier_uv/hello.py
def hello(name: str = "World") -> str:
    """Return a greeting message.

    Args:
        name: The name to greet.

    Returns:
        str: A greeting message from the test_copier_uv package.
    """
    return f"Hello, {name} from test_copier_uv!"