Files
nvim-treesitter/tests/indent/python/basic_collections.py
2021-04-23 21:21:38 +02:00

24 lines
133 B
Python

# list
a = [
1, 2,
3
]
# set
b = {
3,
4,
}
# dict
c = {
'a': 'b',
'c': 1,
}
# tuple
d = (
1,
2,
)