Unstable output with semicolon
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
Ok technically it does converge on stable output, but not in one step. If you start here:
```python
predefined_typedefs = {'foo' : 'bar'};
```
YAPF formats it to this:
```python
predefined_typedefs = {
'foo': 'bar'
}
```
And then to this:
```python
predefined_typedefs = {'foo': 'bar'}
```
Contributor guide
Assessment
This issue has not been assessed yet.