summaryrefslogtreecommitdiff
path: root/python/testData/formatter/hangingIndentsInMultilineCallChainInSquareBrackets_after.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/formatter/hangingIndentsInMultilineCallChainInSquareBrackets_after.py')
-rw-r--r--python/testData/formatter/hangingIndentsInMultilineCallChainInSquareBrackets_after.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/testData/formatter/hangingIndentsInMultilineCallChainInSquareBrackets_after.py b/python/testData/formatter/hangingIndentsInMultilineCallChainInSquareBrackets_after.py
new file mode 100644
index 000000000000..52809d28e918
--- /dev/null
+++ b/python/testData/formatter/hangingIndentsInMultilineCallChainInSquareBrackets_after.py
@@ -0,0 +1,5 @@
+c = ["line"
+ .casefold()
+ .capitalize()
+ .encode()
+ ]