ruff_python_formatter 0.0.3

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/expression/annotated_assign.py
---
## Input
```python
a: string

b: string = "test"

b: list[
    string,
    int
] = [1, 2]

b: list[
    string,
    int,
] = [1, 2]
```

## Output
```python
a: string

b: string = "test"

b: list[string, int] = [1, 2]

b: list[
    string,
    int,
] = [1, 2]
```