5 |
5 |
6 """ |
6 """ |
7 Module implementing the Inline Argument Default dialog. |
7 Module implementing the Inline Argument Default dialog. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt |
10 from PyQt6.QtCore import Qt, pyqtSlot |
11 from PyQt6.QtWidgets import QDialogButtonBox, QListWidgetItem, QAbstractButton |
11 from PyQt6.QtWidgets import QAbstractButton, QDialogButtonBox, QListWidgetItem |
12 |
12 |
|
13 from .RefactoringDialogBase import RefactoringDialogBase |
13 from .Ui_InlineArgumentDefaultDialog import Ui_InlineArgumentDefaultDialog |
14 from .Ui_InlineArgumentDefaultDialog import Ui_InlineArgumentDefaultDialog |
14 from .RefactoringDialogBase import RefactoringDialogBase |
|
15 |
15 |
16 |
16 |
17 class InlineArgumentDefaultDialog( |
17 class InlineArgumentDefaultDialog( |
18 RefactoringDialogBase, Ui_InlineArgumentDefaultDialog |
18 RefactoringDialogBase, Ui_InlineArgumentDefaultDialog |
19 ): |
19 ): |