44 @param conda reference to the conda interface |
44 @param conda reference to the conda interface |
45 @type Conda |
45 @type Conda |
46 @param parent reference to the parent widget |
46 @param parent reference to the parent widget |
47 @type QWidget |
47 @type QWidget |
48 """ |
48 """ |
49 super(CondaPackagesWidget, self).__init__(parent) |
49 super().__init__(parent) |
50 self.setupUi(self) |
50 self.setupUi(self) |
51 |
51 |
52 self.__conda = conda |
52 self.__conda = conda |
53 |
53 |
54 if not CondaInterface.isCondaAvailable(): |
54 if not CondaInterface.isCondaAvailable(): |