aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/basic_collections.py
blob: 1582b9059c5893a968f2b7d70bc34a65eaf9f509 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# list
a = [
    1, 2,
    3
]

# set
b = {
    3,
    4,
}

# dict
c = {
    'a': 'b',
    'c': 1,
}

# tuple
d = (
    1,
    2,
)