eric6/Plugins/VcsPlugins/vcsMercurial/HgUserConfigDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8243
cc717c2ae956
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
42 @param version Mercurial version info 42 @param version Mercurial version info
43 @type tuple of three integers 43 @type tuple of three integers
44 @param parent reference to the parent widget 44 @param parent reference to the parent widget
45 @type QWidget 45 @type QWidget
46 """ 46 """
47 super(HgUserConfigDialog, self).__init__(parent) 47 super().__init__(parent)
48 self.setupUi(self) 48 self.setupUi(self)
49 49
50 self.__version = version 50 self.__version = version
51 51
52 self.__minimumProtocols = { 52 self.__minimumProtocols = {
439 """ 439 """
440 Public slot to accept the dialog. 440 Public slot to accept the dialog.
441 """ 441 """
442 self.writeUserConfig() 442 self.writeUserConfig()
443 443
444 super(HgUserConfigDialog, self).accept() 444 super().accept()
445 445
446 def __clearDialog(self): 446 def __clearDialog(self):
447 """ 447 """
448 Private method to clear the data of the dialog. 448 Private method to clear the data of the dialog.
449 """ 449 """

eric ide

mercurial