ruff_python_formatter 0.0.5

This is an internal component crate of Ruff
Documentation
call(
    # Leading starred comment
    * # Trailing star comment
    [
        # Leading value comment
        [What, i, this, s, very, long, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]
    ] # trailing value comment
)

call(
    # Leading starred comment
    * ( # Leading value comment
        [What, i, this, s, very, long, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]
    ) # trailing value comment
)

call(
    x,
    # Leading starred comment
    * # Trailing star comment
    [
        # Leading value comment
        [What, i, this, s, very, long, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]
    ] # trailing value comment
)

call(
    x,
    * # Trailing star comment
    (  # Leading value comment
        y
    )
)