Files
openide/python/testData/formatter/forceNewLineBeforeRightBraceInDict_after.py

11 lines
91 B
Python

d1 = {'a': 1,
'b': 2
}
d2 = {'a': 1, 'b': 2}
d3 = {
'a': 1,
'b': 2
}