black/tests/data/simple_cases/fmtskip4.py
Sagi Shadur fc2a16433e
Read simple data cases automatically (#3034)
Co-authored-by: Felix Hildén <felix.hilden@gmail.com>
2022-05-08 12:27:40 -07:00

13 lines
92 B
Python

a = 2
# fmt: skip
l = [1, 2, 3,]
# output
a = 2
# fmt: skip
l = [
1,
2,
3,
]