Exemplo n.º 1
0
def format_tests() -> None:
    """
    Format unit tests with black
    """
    do_formatting("test", {"check_already_done": False})
Exemplo n.º 2
0
def formatting_check() -> None:
    """
    Call with check parameter
    """
    do_formatting("--check", BLACK_STATE)
Exemplo n.º 3
0
def formatting() -> None:
    """
    Format main project with black
    """
    do_formatting("", BLACK_STATE)