fix alignment after first argument in call (PY-6360)

This commit is contained in:
Dmitry Jemerov
2012-08-15 12:04:12 +02:00
parent adfc447b17
commit b523566c4e
3 changed files with 15 additions and 2 deletions
@@ -55,7 +55,7 @@ public class PyPsiUtils {
}
@Nullable
protected static ASTNode getNextComma(ASTNode after) {
public static ASTNode getNextComma(ASTNode after) {
ASTNode node = after;
PyElementType comma = PyTokenTypes.COMMA;
do {