Skip to content

misc

File: misc.py.

Description

These functions are not specific to any particular part of the codebase, and are used in multiple places throughout the project.

get_hello_world()

Return a simple hello world message.

Returns:

Name Type Description
str str

A string containing the hello world message.

Source code in src/CryptoFraudDetection/utils/misc.py
def get_hello_world() -> str:
    """
    Return a simple hello world message.

    Returns:
        str: A string containing the hello world message.

    """
    return "Hello, World!"