ruff_python_formatter 0.0.6

This is an internal component crate of Ruff
Documentation
---
source: crates/ruff_python_formatter/tests/fixtures.rs
input_file: crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/break.py
---
## Input
```python
# leading comment
while True:  # block comment
    # inside comment
    break  # break comment
    # post comment
```

## Output
```python
# leading comment
while True:  # block comment
    # inside comment
    break  # break comment
    # post comment
```