--- a/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py Sat Sep 21 22:03:03 2019 +0200 +++ b/eric6/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py Mon Sep 23 19:10:42 2019 +0200 @@ -15,14 +15,17 @@ from PyQt5.QtCore import QFileInfo, pyqtSlot, QProcess, QByteArray from PyQt5.QtGui import QClipboard, QTextCursor -from PyQt5.QtWidgets import QWidget, QDialog, QInputDialog, QApplication, \ - QDialogButtonBox, QVBoxLayout, QTableWidgetItem +from PyQt5.QtWidgets import ( + QWidget, QDialog, QInputDialog, QApplication, QDialogButtonBox, + QVBoxLayout, QTableWidgetItem +) from E5Gui import E5MessageBox, E5FileDialog from E5Gui.E5MainWindow import E5MainWindow -from .Ui_QRegularExpressionWizardDialog import \ +from .Ui_QRegularExpressionWizardDialog import ( Ui_QRegularExpressionWizardDialog +) import UI.PixmapCache @@ -214,8 +217,9 @@ """ Private slot to handle the characters toolbutton. """ - from .QRegularExpressionWizardCharactersDialog import \ + from .QRegularExpressionWizardCharactersDialog import ( QRegularExpressionWizardCharactersDialog + ) dlg = QRegularExpressionWizardCharactersDialog(self) if dlg.exec_() == QDialog.Accepted: self.__insertString(dlg.getCharacters()) @@ -232,8 +236,9 @@ """ Private slot to handle the repeat toolbutton. """ - from .QRegularExpressionWizardRepeatDialog import \ + from .QRegularExpressionWizardRepeatDialog import ( QRegularExpressionWizardRepeatDialog + ) dlg = QRegularExpressionWizardRepeatDialog(self) if dlg.exec_() == QDialog.Accepted: self.__insertString(dlg.getRepeat())