aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/python/comprehensions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/python/comprehensions.py')
-rw-r--r--lua/tests/indent/python/comprehensions.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/lua/tests/indent/python/comprehensions.py b/lua/tests/indent/python/comprehensions.py
deleted file mode 100644
index 53c3961e1..000000000
--- a/lua/tests/indent/python/comprehensions.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# list
-a = [
- x + 1 for x in range(3)
-]
-
-# dict
-b = {
- x: x + 1 for x in range(3)
-}
-
-# generator
-c = (
- x * x for x in range(3)
-)
-
-# set
-d = {
- x + x for x in range(3)
-}
-
-# other styles
-e = [
- x + 1 for x
- in range(3)
-]