aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/hanging_indent.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/indent/python/hanging_indent.py')
-rw-r--r--tests/indent/python/hanging_indent.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/indent/python/hanging_indent.py b/tests/indent/python/hanging_indent.py
new file mode 100644
index 000000000..4d46ebed0
--- /dev/null
+++ b/tests/indent/python/hanging_indent.py
@@ -0,0 +1,6 @@
+def hanging_indent(
+ arg1, arg2):
+ pass
+
+hanging_indent(
+ 1, 2)