yapf breaks up dict line with noqa
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
This got broken up:
```py
'item': {
'very long string that would exceed line limit': 5, # noqa
}
```
to
```py
'item': {
'very long string that would exceed line limit':
5, # noqa
}
```
which then caused the line with the key to exceed the line limit.
Contributor guide
Assessment
This issue has not been assessed yet.