Preserve arguments list aligned to an opening bracket
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
I have the following complain. This
```
redis = await create_subprocess_exec("Redis", "/usr/local/bin/redis-server",
"--bind", str(host), "--port", str(redis_port))
```
becomes this:
```
redis = await create_subprocess_exec(
"Redis", "/usr/local/bin/redis-server", "--bind", str(host), "--port", str(redis_port)
)
```
I would like to keep the first variant (where I align code to opening bracket and line brakes are set by some logic), but cannot find proper setting, is that possible?
I have tried to modify `split_before_named_assigns`, but this did not help...
Contributor guide
Assessment
This issue has not been assessed yet.