6 """ |
6 """ |
7 Module implementing the Mercurial Options Dialog for a new project from the |
7 Module implementing the Mercurial Options Dialog for a new project from the |
8 repository. |
8 repository. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt5.QtCore import pyqtSlot, QUrl |
11 from PyQt6.QtCore import pyqtSlot, QUrl |
12 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QComboBox |
12 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QComboBox |
13 |
13 |
14 from E5Gui.E5PathPicker import E5PathPickerModes |
14 from E5Gui.E5PathPicker import E5PathPickerModes |
15 |
15 |
16 from .Ui_HgNewProjectOptionsDialog import Ui_HgNewProjectOptionsDialog |
16 from .Ui_HgNewProjectOptionsDialog import Ui_HgNewProjectOptionsDialog |
17 from .Config import ConfigHgSchemes |
17 from .Config import ConfigHgSchemes |