From e2d64f0cd8b22fe25a86ca242dbeda3123445a18 Mon Sep 17 00:00:00 2001 From: Mikhail Golubev Date: Mon, 23 Jan 2017 17:11:47 +0300 Subject: [PATCH] PY-20633 PY-9764 Change the code sample to better show effect of the new options --- .../python/formatter/PyLanguageCodeStyleSettingsProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/com/jetbrains/python/formatter/PyLanguageCodeStyleSettingsProvider.java b/python/src/com/jetbrains/python/formatter/PyLanguageCodeStyleSettingsProvider.java index 4d9bf537c737..511cca5aafed 100644 --- a/python/src/com/jetbrains/python/formatter/PyLanguageCodeStyleSettingsProvider.java +++ b/python/src/com/jetbrains/python/formatter/PyLanguageCodeStyleSettingsProvider.java @@ -192,7 +192,7 @@ public class PyLanguageCodeStyleSettingsProvider extends LanguageCodeStyleSettin " def foo(self):\n" + " pass"; @SuppressWarnings("FieldCanBeLocal") - private static String WRAP_SETTINGS_PREVIEW = "from module import (foo, bar, baz, quux,)\n" + + private static String WRAP_SETTINGS_PREVIEW = "from module import foo, bar, baz, quux\n" + "\n" + "long_expression = component_one + component_two + component_three + component_four + component_five + component_six\n" + "\n" +