mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
If one has chosen to omit a space after comma in settings but still wants a space within braces or brackets in collection literals.
11 lines
126 B
Python
11 lines
126 B
Python
s1 = {1, 2, 3,}
|
|
s2 = {1, }
|
|
|
|
d1 = {'foo': 1, 'bar': 2, 'baz': 3,}
|
|
d2 = {'foo': 1,}
|
|
d3 = {}
|
|
|
|
l1 = [1, 2, 3,]
|
|
l2 = [1, ]
|
|
l3 = []
|