Files
openide/python/testData/formatter/alightDictLiteralOnValueSubscriptionsAndSlices_after.py
Mikhail Golubev 4b18fccf8f PY-22272 Don't use brackets of indexed dict values for alignment
In general, don't apply this special casing if dict value doesn't start
with a bracket.
2017-09-14 15:32:46 +03:00

7 lines
326 B
Python

my_dict = {
"one": example_list[0],
"two": example_list[1],
"three": example_list[2:3],
"some really long element name that takes a lot of space": "four"
}