astral-sh / ruff

An extremely fast Python linter and code formatter, written in Rust.
https://docs.astral.sh/ruff
MIT License
28.59k stars 925 forks source link

Formatter doesn't combine strings #12057

Closed KotlinIsland closed 4 days ago

KotlinIsland commented 4 days ago

before:

    (
        ""
        ""
    )

after:

    ("" "")

expected

    ("")
    # OR
    ""
DetachHead commented 4 days ago

related: #6936

dhruvmanila commented 4 days ago

I'll merge this with #6936