PY-13304 Always use continuation indent after function arguments

It probably conflicts with existing fix for PY-12749.
This commit is contained in:
Mikhail Golubev
2015-11-09 13:51:12 +03:00
parent 1c76041108
commit c9a2a6396f
8 changed files with 12 additions and 28 deletions
@@ -1,8 +1,8 @@
import subprocess as sp
a = sp.check_output(
args=['python', '-c', 'print("Spam")'],
# read errors too
stderr=sp.STDOUT
args=['python', '-c', 'print("Spam")'],
# read errors too
stderr=sp.STDOUT
)
print(a)