mirror of
https://github.com/astral-sh/ruff
synced 2026-01-09 07:34:06 -05:00
**Summary** Fix an instability in with statement formatter when there is
an own line comment as the `as`
```python
with (
a as
# bad comment
b):
```
**Test Plan** Added the comment to the test cases.