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/form_feed.py
---
## Input
```python
# Regression test for: https://github.com/astral-sh/ruff/issues/7624
if symbol is not None:
    request["market"] = market["id"]
      #             "remaining_volume": "0.0",
else:
    pass
```

## Output
```python
# Regression test for: https://github.com/astral-sh/ruff/issues/7624
if symbol is not None:
    request["market"] = market["id"]
    #             "remaining_volume": "0.0",
else:
    pass
```