src/eric7/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
8 """ 8 """
9 9
10 from PyQt6.QtCore import QRegularExpression 10 from PyQt6.QtCore import QRegularExpression
11 from PyQt6.QtGui import QRegularExpressionValidator 11 from PyQt6.QtGui import QRegularExpressionValidator
12 from PyQt6.QtWidgets import ( 12 from PyQt6.QtWidgets import (
13 QComboBox,
14 QDialog,
15 QHBoxLayout,
16 QLabel,
17 QLineEdit,
18 QPushButton,
19 QScrollArea,
13 QSizePolicy, 20 QSizePolicy,
14 QSpacerItem, 21 QSpacerItem,
22 QVBoxLayout,
15 QWidget, 23 QWidget,
16 QHBoxLayout,
17 QLineEdit,
18 QPushButton,
19 QDialog,
20 QScrollArea,
21 QComboBox,
22 QVBoxLayout,
23 QLabel,
24 ) 24 )
25 25
26 from .Ui_PyRegExpWizardCharactersDialog import Ui_PyRegExpWizardCharactersDialog 26 from .Ui_PyRegExpWizardCharactersDialog import Ui_PyRegExpWizardCharactersDialog
27 27
28 28

eric ide

mercurial