Reformatted continuation lines have the same indent as the following line in context managers
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
I have some code
```
async with pool.acquire() as conn, conn.cursor(
cursor_factory=NamedTupleCursor, timeout=some_config.cursor_timeout) as some_cursor:
await some_cursor.execute('SET search_path=' + db_schema)
```
Yapf reformats it so that `cursor..` is indented to the same level as `await ..`, which causes pyflakes to complain about it.
My .style.yapf is
```
[style]
COLUMN_LIMIT=120
```
Contributor guide
Assessment
This issue has not been assessed yet.