--- source: crates/ruff_python_formatter/tests/fixtures.rs input_file: crates/ruff_python_formatter/resources/test/fixtures/black/simple_cases/fmtskip.py --- ## Input ```py a, b = 1, 2 c = 6 # fmt: skip d = 5 ``` ## Black Differences ```diff --- Black +++ Ruff @@ -1,3 +1,3 @@ a, b = 1, 2 -c = 6 # fmt: skip +c = 6 # fmt: skip d = 5 ``` ## Ruff Output ```py a, b = 1, 2 c = 6 # fmt: skip d = 5 ``` ## Black Output ```py a, b = 1, 2 c = 6 # fmt: skip d = 5 ```