google / google/yapf

Feature request: Avoid right-aligned code

Open
#1,043 3 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.