Feature request: Avoid right-aligned code
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
Is there a flag that would avoid:
```python
s.state.blablablabla[frozenset([origin,
target])].trades.append(
Trade(
foo = origin,
sell_amount = amount,
bar = target,
baz = baz,
idx = idx,
)
)
```
And instead format it like this?
```python
s.state.blablablabla[frozenset([origin, target])].trades.append(
Trade(
foo = origin,
sell_amount = amount,
bar = target,
baz = baz,
idx = idx,
)
)
```
Contributor guide
Assessment
This issue has not been assessed yet.