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/docstring_non_visible_characters.py
---
## Input
```python
# Regression test for https://github.com/astral-sh/ruff/issues/11724

'''


'''
```

## Output
```python
# Regression test for https://github.com/astral-sh/ruff/issues/11724

"""


"""
```