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/black/miscellaneous/blackd_diff.py
---
## Input

```python
def abc ():
    return ["hello", "world",
            "!"]

print(   "Incorrect formatting"    
)
```

## Black Differences

```diff
--- Black
+++ Ruff
@@ -1,6 +1,5 @@
-def abc ():
-    return ["hello", "world",
-            "!"]
+def abc():
+    return ["hello", "world", "!"]
 
-print(   "Incorrect formatting"    
-)
+
+print("Incorrect formatting")
```

## Ruff Output

```python
def abc():
    return ["hello", "world", "!"]


print("Incorrect formatting")
```

## Black Output

```python
def abc ():
    return ["hello", "world",
            "!"]

print(   "Incorrect formatting"    
)
```