eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py

changeset 7258
aff39db4dacc
parent 7229
53054eb5b15a
child 7360
9190402e4505
--- a/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py	Sat Sep 21 22:03:03 2019 +0200
+++ b/eric6/Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py	Mon Sep 23 19:10:42 2019 +0200
@@ -261,8 +261,9 @@
         """
         Private slot to select the categories.
         """
-        from .DotDesktopListSelectionDialog import \
+        from .DotDesktopListSelectionDialog import (
             DotDesktopListSelectionDialog
+        )
         dlg = DotDesktopListSelectionDialog(
             self.__mainCategories,
             self.categoriesEdit.text(), ";",
@@ -292,8 +293,9 @@
         """
         Private slot to select the OnlyShowIn environments.
         """
-        from .DotDesktopListSelectionDialog import \
+        from .DotDesktopListSelectionDialog import (
             DotDesktopListSelectionDialog
+        )
         dlg = DotDesktopListSelectionDialog(
             self.__showinEnvironments,
             self.onlyShowEdit.text(), ";")
@@ -321,8 +323,9 @@
         """
         Private slot to select the NotShowIn environments.
         """
-        from .DotDesktopListSelectionDialog import \
+        from .DotDesktopListSelectionDialog import (
             DotDesktopListSelectionDialog
+        )
         dlg = DotDesktopListSelectionDialog(
             self.__showinEnvironments,
             self.notShowEdit.text(), ";")

eric ide

mercurial