aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/python/nested_collections.py
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/python/nested_collections.py')
-rw-r--r--lua/tests/indent/python/nested_collections.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/lua/tests/indent/python/nested_collections.py b/lua/tests/indent/python/nested_collections.py
deleted file mode 100644
index 292a65a00..000000000
--- a/lua/tests/indent/python/nested_collections.py
+++ /dev/null
@@ -1,41 +0,0 @@
-a = [
- 1,
- [
- 2,
- [
- 3
- ]
- ]
-]
-
-b = [
- 1, [[
- 3
- ],
- ]
-]
-
-c = [[[
- 3
-]]]
-
-d = {
- 'a': [
- 2, 3
- ],
- 'c': (
- [1, 2, 3],
- [
- 2,
- 4
- ], {
- 6,
- 8
- }
- )
-}
-
-e = (1, 2,
- 3, 4,
- 5, 6
- )