def format_tests() -> None:
    """
    Format unit tests with black
    """
    do_formatting("test", {"check_already_done": False})
def formatting_check() -> None:
    """
    Call with check parameter
    """
    do_formatting("--check", BLACK_STATE)
def formatting() -> None:
    """
    Format main project with black
    """
    do_formatting("", BLACK_STATE)