37 @param baseDir base directory for the virtual environments |
37 @param baseDir base directory for the virtual environments |
38 @type str |
38 @type str |
39 @param parent reference to the parent widget |
39 @param parent reference to the parent widget |
40 @type QWidget |
40 @type QWidget |
41 """ |
41 """ |
42 super(VirtualenvConfigurationDialog, self).__init__(parent) |
42 super().__init__(parent) |
43 self.setupUi(self) |
43 self.setupUi(self) |
44 |
44 |
45 if not baseDir: |
45 if not baseDir: |
46 baseDir = Utilities.getHomeDir() |
46 baseDir = Utilities.getHomeDir() |
47 self.__envBaseDir = baseDir |
47 self.__envBaseDir = baseDir |