ruff/crates/ruff_python_formatter/tests
konsti dca430f4d2
Fix instability with await fluent style (#8676)
Fix an instability where await was followed by a breaking fluent style
expression:

```python
test_data = await (
    Stream.from_async(async_data)
    .flat_map_async()
    .map()
    .filter_async(is_valid_data)
    .to_list()
)
```

Note that this technically a minor style change (see ecosystem check)
2023-11-17 12:24:19 -05:00
..
snapshots Fix instability with await fluent style (#8676) 2023-11-17 12:24:19 -05:00
fixtures.rs Compare formatted and unformatted ASTs during formatter tests (#8624) 2023-11-13 17:43:27 +00:00
normalizer.rs Treat class C: ... and class C(): ... equivalently (#8659) 2023-11-13 18:03:04 +00:00