---
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
@@ -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"
)
```