Unusual function arg and closing function call parenthesis placement in dict hanging indent.
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
With Google style, yapf produces this:
```python
{
'a':
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(bbbbbbbbb
),
}
```
I'd expect the function argument to be on the next line with the parenthesis, like this:
```python
{
'a':
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(
bbbbbbbbb),
}
```
Contributor guide
Assessment
This issue has not been assessed yet.