Skip to content

Commit fd13d35

Browse files
committed
snapshots
1 parent f7c958e commit fd13d35

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__compound_one_liners.py.snap

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,13 @@ if (
146146
for x in it: foo()
147147
# comment
148148
else: bar() # fmt: skip
149+
150+
151+
if this(
152+
'is a long',
153+
# commented
154+
'condition'
155+
): with_a_skip # fmt: skip
149156
```
150157

151158
## Output
@@ -324,4 +331,11 @@ for x in it:
324331
foo()
325332
# comment
326333
else: bar() # fmt: skip
334+
335+
336+
if this(
337+
'is a long',
338+
# commented
339+
'condition'
340+
): with_a_skip # fmt: skip
327341
```

0 commit comments

Comments
 (0)