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/stub_files/comments.pyi
---
## Input
```python
class SupportsAnext:
    def __anext__(self): ...

# Comparison protocols

class SupportsDunderLT:
    def __init__(self): ...
```

## Output
```python
class SupportsAnext:
    def __anext__(self): ...

# Comparison protocols

class SupportsDunderLT:
    def __init__(self): ...
```