Function call without arguments.
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
When formatting a function call without arguments that passes the column limit, the closing bracket is split to a new line.
For example (with very low `column_limit`) the line
```python
return self.server.is_running()
```
is formatted to:
```python
return self.server.is_running(
)
```
is there a way to avoid this behavior without modifying the column limit?
Contributor guide
Assessment
This issue has not been assessed yet.