Commits
Click on a commit to change the comparison rangePreserve multiline implicit concatenated strings in docstring positions
## Summary
This is a bug fix for https://github.com/astral-sh/ruff/pull/13928
We failed to preserve multiline implicit concatenated
strings that can't be automatically joined in docstring positions:
```py
def test():
(
r"This is a docstring"
"and Ruff can't automatically join it"
)
```
## Test plan
Added formatter tests19 days ago
by MichaReiser