ruff_python_formatter 0.0.4

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/aug_assign.py
---
## Input
```python
tree_depth += 1

greeting += "This is very long, formal greeting for whomever is name here. Dear %s, it will break the line" % len(
    name
)
```

## Output
```python
tree_depth += 1

greeting += (
    "This is very long, formal greeting for whomever is name here. Dear %s, it will break the line"
    % len(name)
)
```