ruff/crates/ruff_python_formatter/resources/test/fixtures
konstin d407165aa7
Fix formatter panic with comment after parenthesized dict value (#5293)
## Summary

This snippet used to panic because it expected to see a comma or
something similar after the `2` but met the closing parentheses that is
not part of the range and panicked
```python
a = {
    1: (2),
    # comment
    3: True,
}
```

Originally found in
636a717ef0/testing/marionette/client/marionette_driver/geckoinstance.py (L109)

This snippet is also the test plan.
2023-06-22 16:52:48 +02:00
..
black Move typos to pre-commit config (#4148) 2023-04-29 12:13:35 -04:00
ruff Fix formatter panic with comment after parenthesized dict value (#5293) 2023-06-22 16:52:48 +02:00